<!-- // Hiding script from old browsers
// This function displays the time in the status line.
// Invoke it once to activate the clock; it will call itself from then on.
function display_time_in_status_line(){
 d = new Date();							//get current date/time
 var mon = d.getMonth() + 1;				//extract month; 1 to 12
 var day = d.getDate();					//extract day: 1 to 31
 var year = d.getFullYear();			//extract full 4-digit year
 var h = d.getHours();					//extract hours; 0 to 23
 var m = d.getMinutes();				//extract minutes: 0 to 59
 var ampm = (h >= 12)?"PM":"AM";		//is it am or pm?
 if (h > 12) h -= 12;					//convert 24-hour format to 12-hour
 if (h == 0) h = 12;						//convert 0 o'clock to midnight
 if (m < 10) m = "0" + m;				//stop zero suppression
 var t = mon + '/' + day + '/' + year + ' ' + h + ':' + m + ' ' + ampm;
 defaultStatus = t;						//show the time on the status line

 // Arrange to do this again in one minute
 setTimeout("display_time_in_status_line()", 60000); //60000 milliseconds is one minute
}
// end hiding contents from old browsers
// -->
