<!-- Start
// NOTE: If you use a ' add a slash before it like this \'
// Date Script
var showd	= "yes"  // "yes" = SHOW THE DATE
if (showd == "yes") {
	var d=new Date()
	var weekday=new Array("Sunday","Monday","Tuesday","Wed","Thu","Friday","Sat")
	var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
// document.write('<br /><span class=\"date-font\"> ');
	document.write(weekday[d.getDay()] + " ");
	document.write(monthname[d.getMonth()] + " ");
	document.write(d.getDate() + ". ");
	document.write(d.getFullYear());
//	document.write("</nobr><br /></span>");
    }
//  End -->
