function date()
{
  today = new Date();
  //date info
  day=today.getDay() + 1;
  months=today.getMonth() + 1;
  dates=today.getDate();
  years=today.getYear();
  //day info
  if(day==1){ day="Sun, "; }
  else if(day==2){ day="Mon, "; }
  else if(day==3){ day="Tue, "; }
  else if(day==4){ day="Wed, "; }
  else if(day==5){ day="Thu, "; }
  else if(day==6){ day="Fri, "; }
  else if(day==7){ day="Sat, "; }
  //month info
  if(months==1){ months="Jan "; }
  else if(months==2){ months="Feb "; }
  else if(months==3){ months="Mar "; }
  else if(months==4){ months="Apr "; }
  else if(months==5){ months="May "; }
  else if(months==6){ months="Jun "; }
  else if(months==7){ months="Jul "; }
  else if(months==8){ months="Aug "; }
  else if(months==9){ months="Sep "; }
  else if(months==10){ months="Oct "; }
  else if(months==11){ months="Nov "; }
  else if(months==12){ months="Dec "; }
  //year info
  if(years==00){ years="2000"; }
  else if(years==2000){ years="2000"; }
  else if(years==100){ years="2000"; }
  else if(years==2001){ years="2001"; }
  else if(years==101){ years="2001"; }
  else if(years==01){ years="2001"; }
  else if(years==02){ years="2002"; }
  else if(years==03){ years="2003"; }
  else if(years==04){ years="2004"; }
  document.write('<font face="Verdana" size="1" text-decoration:bold color="#000000"><b>'+day+months+dates+', '+years+' </b></font>')
}