<!-- This script and many more are available free online at --> 
<!-- The JavaScript Source!! http://javascript.internet.com --> 
<!-- Begin
monthnames = new Array( 
"January", 
"February", 
"March", 
"April", 
"May", 
"June", 
"July", 
"August", 
"September", 
"October", 
"November", 
"December");
wkdaynames = new Array( 
"Sunday",
"Monday", 
"Tuesday", 
"Wednesday", 
"Thursday", 
"Friday", 
"Saturday");
todayDate=new Date(); 
thisday=todayDate.getDay(); 
thismonth=todayDate.getMonth(); 
thisdate=todayDate.getDate(); 
thisyear=todayDate.getYear();
thisyear=(navigator.appName.indexOf('Netscape')!=-1)? thisyear+1900: thisyear;
document.write("<span class='calendar'>"+wkdaynames[thisday]+", "+monthnames[thismonth]+" "+thisdate+", "+thisyear+"</span>");
document.write("  <span id=tm></span>");

// } 

//clock();
// End --> 
