 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.";
 var  months = new Array();
  months[0] = "Jan.";
  months[1] = "Feb.";
  months[2] = "Mar.";
  months[3] = "April.";
  months[4] = "May.";
  months[5] = "June.";
  months[6] = "July.";
  months[7] = "Aug.";
  months[8] = "Sept.";
  months[9] = "Oct.";
  months[10] = "Nov.";
  months[11] = "Dec.";
 var today = new Date();
document.write('<FONT FACE=Tahoma SIZE=2 COLOR=#000033>');
document.write(days[today.getDay()]+" ");
document.write(today.getDate()+" ");
document.write(months[today.getMonth()]+" ");
document.write(today.getYear()+" ");
document.write('</FONT>');