var thisdate = new Date();
var thisday = thisdate.getDay();
var thismonth = thisdate.getMonth();
var thisweekday= thisdate.getDate();
var weekday= thisweekday;
var thisyear= thisdate.getFullYear();
var year = thisyear;

if(thisday == 0)
  day = " Sunday, ";
else if(thisday == 1)
  day = " Monday, ";
else if(thisday == 2)
  day = " Tuesday, ";
else if(thisday == 3)
  day = " Wednesday, ";
else if(thisday == 4)
  day = " Thursday, ";
else if(thisday == 5)
  day = " Friday, ";
else if(thisday == 6)
  day = " Saturday, ";

if(thismonth == 0)
  month = "January ";
else if(thismonth ==1)
  month = "February ";
else if(thismonth ==2)
  month = "March ";
else if(thismonth ==3)
  month = "April ";
else if(thismonth ==4)
  month = "May ";
else if(thismonth ==5)
  month = "June ";
else if(thismonth ==6)
  month = "July ";
else if(thismonth ==7)
  month = "August ";
else if(thismonth ==8)
  month = "September ";
else if(thismonth ==9)
  month = "October ";
else if(thismonth ==10)
  month = "November ";
else if(thismonth ==11)
  month = "December ";

function startForm() {
	document.forms.form1.dateToday.value = day+" "+month+" "+thisweekday+","+" "+year;
	document.forms.form1.name.focus();
}