<!-- Begin
var timeStr, dateStr;

      function Set() {
      now= new Date();

        // time
        hours= now.getHours();
		if (hours >= 12) {
		Time = " p.m.";
		}
		else {
		Time = " a.m.";
		}

		if (hours > 12) {
		hours -= 12;
		}

		if (hours == 0) {
		hours = 12;
		}


        minutes= now.getMinutes();
        timeStr= "" + hours;
        timeStr+= ((minutes < 10) ? ":0" : ":") + minutes + Time;
        document.form.Time.value = timeStr;

        // date
        date= now.getDate();
        month= now.getMonth()+1;
        year= now.getYear();
        if (year < 2000)    // Y2K Fix, Jamie Booth
        year = year + 1900; // http://www.webkor.com
        dateStr= "" + month;
        dateStr+= ((date < 10) ? "/0" : "/") + date;
        dateStr+= "/" + year;
        document.form.Date.value = dateStr;
}
//-->
