<!-- Begin Multi Data Desain JavaScript

function printDateTime()
{
   var months=new Array(13);
   months[1]="Januari";
   months[2]="Pebruari";
   months[3]="Maret";
   months[4]="April";
   months[5]="Mei";
   months[6]="Juni";
   months[7]="July";
   months[8]="Agustus";
   months[9]="September";
   months[10]="Oktober";
   months[11]="Nopember";
   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)    
   year = year + 1900; 
   if( TimeHour < 10)
   {
      TimeHour ="0"+TimeHour;
   }
   if( TimeMinute < 10)
   {
      TimeMinute ="0"+TimeMinute;
   }
   document.write(date + " " + lmonth + " " + year + " - " + TimeHour + ":" + TimeMinute + " " + ampm);
}
function pop(filename, x, y) {
   windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=" + x + ",height=" + y + "'");
   window.open(filename, 'New1', windowops);
   return;
}

// End Multi Data Desain JavaScript -->