<!--				// Comment hides script from old browsers.
// This Java Script gets the current time and date from the local machine.
var now=new Date()
var hour=now.getHours()
var minutes=now.getMinutes()
var ampm = "am"

if (minutes<10)  { minutes="0"+minutes}
if (hour==0)
 {hour=12
  ampm="am"}
if (hour>11)     {ampm = "pm"}
if (hour>12)     {hour=hour-12}
  
var date=now.getDate()
var month=now.getMonth()+1
var year=now.getYear()

var timeformat=hour+":"+minutes+" "+ampm+"&nbsp;&nbsp;&nbsp;"
var dateformat=month+"- "+date+"- "+year

document.write(timeformat)
document.write(dateformat)
document.write("<br />")
//-->
