<!--
function initArray() {
 for(i=0;i<initArray.arguments.length; i++)
  this[i] = initArray.arguments[i];
}
var isnMonths=new initArray("January","February","March","April","May","June","July","August","September","October","November","December");
var isnDays= new initArray("Sun","Mon","Tue","Wed","Thur","Fri","Sat","Sun");
today=new Date();
hrs=today.getHours();
min=today.getMinutes();
sec=today.getSeconds();
clckh=""+((hrs>12)?hrs-12:hrs); 
clckm=((min<10)?"0":"")+min;
clcks=((sec<10)?"0":"")+sec;
clck=(hrs>=12)?"p.m.":"a.m.";

var stnr="";
var ns="0123456789";
var a="";
// End Hiding -->

<!--Hide JavaScript from Java-Impaired Browsers
// fixes a Netscape 2 and 3 bug
function getFullYear(d) { // d is a date object
 yr = d.getYear();
 if (yr < 1000)
  yr+=1900;
 return yr;
}
document.write("<table width=638>"); // don't delete this line

/* Simply delete the forms of date or time 
   you don't wish to use below. */

document.write("<TR><TD VALIGN=TOP></TD><TD VALIGN=TOP> "+isnDays[today.getDay()]
+", "+isnMonths[today.getMonth()]+" "+today.getDate()+", "
+getFullYear(today)+"");

document.write("</table>"); // don't delete this line



// End hiding -->