function printDateTime()
{
   var months=new Array(13);
   months[1]="Januari";
   months[2]="Februari";
   months[3]="Maret";
   months[4]="April";
   months[5]="Mei";
   months[6]="Juni";
   months[7]="Juli";
   months[8]="Agustus";
   months[9]="September";
   months[10]="Oktober";
   months[11]="November";
   months[12]="Desember";
   var time=new Date();
   var lmonth=months[time.getMonth() + 1];
   var date=time.getDate();
   var year=time.getYear();
   var TimeHour =time.getHours();
   var TimeMinute =time.getMinutes();   
   var ampm = "AM"
   if (TimeHour >= 12)
   {
      TimeHour -= 12; // change to PM
      ampm = "PM";
   }
   if (year < 2000)    // Y2K Fix, Isaac Powell
   year = year + 1900; // http://onyx.idbsu.edu/~ipowell
   document.write(date + " " + lmonth + ", " + year + " " + TimeHour + ":" + TimeMinute + " " + ampm);
}