dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
monName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
now = new Date
day = now.getDate()
year = now.getFullYear()
function showZeroFilled(inValue)	{
	if (inValue > 9) {
		return inValue
	}
	return "0" + inValue
}
document.writeln('<TABLE width="550" height="150"><TR><TD width="235"><\/TD>')
document.writeln('<TD width="300" height="20" valign="top" align="right">')
document.writeln(now.getHours()+':'+showZeroFilled(now.getMinutes())+' on '+dayName[now.getDay()]+', '+monName[now.getMonth()]+' '+day+', '+year)
document.writeln('<\/TD><TD width="15"><\/TD><\/TR><TR><TD colspan="3" height="130"><\/TD><\/TR><\/TABLE>')
