/* Digital Clock
 *  © Dallas Monro and © Bash Street Design 2004 All Rights Reserved
 *
 *    clock()	Starts the digital clock
 *		form name="clock"
 *		textfield name="timer"
 */
//  Days array
	var days=new Array();
	days[0]="Sun "; days[1]="Mon "; days[2]="Tue "; days[3]="Wed "; days[4]="Thu "; days[5]="Fri "; days[6]="Sat ";

//  Months array
	var months=new Array();
	months[0]="Jan "; months[1]="Feb "; months[2] ="Mar "; months[3] ="Apr ";
	months[4]="May "; months[5]="Jun "; months[6] ="Jul "; months[7] ="Aug ";
	months[8]="Sep "; months[9]="Oct "; months[10]="Nov "; months[11]="Dec ";

// Start the digital clock:

function clock(){
	var now=new Date();
	var today=now.getDate(); var month=now.getMonth()+1; var year=now.getYear();
	var day=now.getDay(); var hour=now.getHours(); var minute=now.getMinutes(); var second=now.getSeconds();
	if (hour<=9) hour="0"+hour; if (minute<=9) minute="0"+minute; if (second<=9) second="0"+second;
	day=days[now.getDay()]; month=months[now.getMonth()];
	if(document.all) {
	document.forms.clock.timer.value = day + month + today + " " + year + " " + hour + ":" + minute + ":" + second;
	document.forms.clock.timer.style.fontFamily="Arial";
	document.forms.clock.timer.style.color="yellow";
	document.forms.clock.timer.style.bordercolor="none"; }
	window.setTimeout("clock()",1000); }

// End of Digital Clock