//
// Place todays date on page
//
var dateLR		= "right"		// DATE LEFT OR RIGHT
var dateX		= "11"			// DATE X LOCATION
var dateY		= "122"			// DATE Y LOCATION
var dateCOLOR		= "WHITE"		// DATE COLOR

document.write('<font color='+dateCOLOR+'>')
document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><B><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></B></span>")
document.write('</div>')
document.write('</font>');
