<!-- 

//display a different message depending on date
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var mytoday=Digital.getDate()

var tipsarray=new Array(

"Do not use hidden text in your web pages to try and improve your ranking. The search-engines will detect it and downgrade your site",
"Do not use mega tags for words that are not on that web-page, it will damage your search-engine ranking",
"Do not use other people's trade names as meta tags without authorisation, you could be in breach of pass-off laws",
"Update your site daily so that visitors have a reason to come back!",
"Do not underestimate the effectiveness of conventional advertising when promoting your website!",
"A submission from a site poorly configured for search-engines can cause you long term ranking problems. Have it performed by a professional. See our <a target='_blank' href='submissions_service.htm'>Submissions Service</a></font>",
"Use the words you have set as meta tags throughout your web-page in a mixture of upper and lower case to improve your search-engine ranking",
"Site popularity is of increasing relevance to your search-engine ranking. Get a link on as many different sites as you can, their popularity and ranking will help your own. Take a look at our <a target='_blank' href='hits_boster_service_details.htm'>Hits Booster</a> service.</font>",
"Many engines will now only allow you to submit your home page and will not index you otherwise",
"Always encourage your customers to enter your site through your home page. Then you can ensure they see the whole range of what you have to offer! Use your stats to keep track of what pages your visitors enter at and visit. Try out our <a target='_blank' href='superstats_service_details.htm'>Super Stats</a>",
"Try setting the first letter of your keywords in uppercase if they are used only in lowercase within your site",
"Beware of continually re-submitting your site, many engines object to it nowadays. You are better off monitoring your ranking and re-submitting if it starts to fall",
"Try adding common mis-spellings of important words as keywords to catch more traffic",
"Try adding American spellings of important words as keywords to catch more traffic",
"Use your keywords throughout your body text in singular, plural, different tenses etc. Although many engines (but not all) will cope with partial-matching you may still not get the best ranking",
"Do not use hidden text in your web pages to try and improve your ranking. The search-engines will detect it and downgrade your site",
"Do not use mega tags for words that are not on that web-page, it will damage your search-engine ranking",
"Do not use other people's trade names as meta tags without authorisation, you could be in breach of pass-off laws",
"Update your site daily so that visitors have a reason to come back!",
"Do not underestimate the effectiveness of conventional advertising when promoting your website!",
"Beware of continually re-submitting your site, many engines object to it nowadays. You are better off monitoring your ranking and re-submitting if it starts to fall",
"A submission from a site poorly configured for search-engines can cause you long term ranking problems. Have it performed by a professional. See our <a target='_blank' href='submissions_service.htm'>Submissions Service</a></font>",
"Use the words you have set as meta tags throughout your web-page in a mixture of upper and lower case to improve your search-engine ranking",
"Site popularity is of increasing relevance to your search-engine ranking. Get a link on as many different sites as you can, their popularity and ranking will help your own. Take a look at our <a target='_blank' href='hits_boster_service_details.htm'>Hits Booster</a> service.</font>",
"Always encourage your customers to enter your site through your home page. Then you can ensure they see the whole range of what you have to offer! Use your stats to keep track of what pages your visitors enter at and visit. Try out our <a target='_blank' href='superstats_service_details.htm'>Super Stats</a>",
"Try setting the first letter of your keywords in uppercase if they are used only in lowercase within your site",
"Try adding common mis-spellings of important words as keywords to catch more traffic",
"Try adding American spellings of important words as keywords to catch more traffic",
"Use your keywords throughout your body text in singular, plural, different tenses etc. Although many engines (but not all) will cope with partial-matching you may still not get the best ranking",
"Do not use hidden text in your web pages to try and improve your ranking. The search-engines will detect it and downgrade your site",
"Do not use mega tags for words that are not on that web-page, it will damage your search-engine ranking",
"Do not use other people's trade names as meta tags without authorisation, you could be in breach of pass-off laws",
"Update your site daily so that visitors have a reason to come back!",
"Beware of continually re-submitting your site, many engines object to it nowadays. You are better off monitoring your ranking and re-submitting if it starts to fall",
"Do not underestimate the effectiveness of conventional advertising when promoting your website!",
"A submission from a site poorly configured for search-engines can cause you long term ranking problems. Have it performed by a professional. See our <a target='_blank' href='submissions_service.htm'>Submissions Service</a></font>",
"Use the words you have set as meta tags throughout your web-page in a mixture of upper and lower case to improve your search-engine ranking",
"Site popularity is of increasing relevance to your search-engine ranking. Get a link on as many different sites as you can, their popularity and ranking will help your own. Take a look at our <a target='_blank' href='hits_boster_service_details.htm'>Hits Booster</a> service.</font>",
"Always encourage your customers to enter your site through your home page. Then you can ensure they see the whole range of what you have to offer! Use your stats to keep track of what pages your visitors enter at and visit. Try out our <a target='_blank' href='superstats_service_details.htm'>Super Stats</a>",
"Do not use hidden text in your web pages to try and improve your ranking. The search-engines will detect it and downgrade your site",
"Do not use mega tags for words that are not on that web-page, it will damage your search-engine ranking",
"Do not use other people's trade names as meta tags without authorisation, you could be in breach of pass-off laws",
"Update your site daily so that visitors have a reason to come back!"


)

/*Current date script credit: 
Website Abstraction (www.wsabstract.com)
Over 200+ free scripts here!
*/

var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<font color=White face='Arial'>"+dayarray[day]+", "+montharray[month]+" "+daym+"</font><br><br>")
document.write("<p align='right'>Free tip of the day</b><br>")
document.write(tipsarray[daym-1]+"</p>")

// -->
