// JavaScript Document
function MakeArraya(size){
 this.length = size;
 for(var i = 1; i <= size; i++){
 this[i] = "";}
 return this;}
 function MakeArrayb(size){
 this.length = size;
 for(var i = 1; i <= size; i++){
 this[i] = "";}
 return this;}
 function showtime(){
 var now = new Date();
 var year = now.getFullYear();
 var month = now.getMonth() + 1;
 var date = now.getDate();
 var day = now.getDay();
 Day = new MakeArraya(7);
 Day[0]="Sunday";
 Day[1]="Monday";
 Day[2]="Tuesday";
 Day[3]="Wednesday";
 Day[4]="Thursday";
 Day[5]="Friday";
 Day[6]="Saturday";
 Month = new MakeArrayb(12);
 Month[1]="January";
 Month[2]="February";
 Month[3]="March";
 Month[4]="April";
 Month[5]="May";
 Month[6]="June";
 Month[7]="July";
 Month[8]="August";
 Month[9]="September";
 Month[10]="October";
 Month[11]="November";
 Month[12]="December";
 var timeValue = "";
 timeValue += (Day[day]) + ",  ";
 timeValue += (Month[month]) + " ";
 <!-- timeValue += date + ", " + "19" + year + "    "; -->
 timeValue += date + ", " + year;
 document.write( timeValue);}
showtime();
// -->