<!-- begin date script

   date = new Date();

   var day_of_week_number = date.getDay();
   var day_of_month = date.getDate();
   var month_number = date.getMonth();
   var year = date.getFullYear();
   var day_of_week = '';
   var month = ''

	//  WRITE THE MONTH AND DATE ->
   if(month_number == 0){month = 'Januari';}
   if(month_number == 1){month = 'Februari';}
   if(month_number == 2){month = 'Mac';}
   if(month_number == 3){month = 'April';}
   if(month_number == 4){month = 'Mei';} 
   if(month_number == 5){month = 'Jun';}
   if(month_number == 6){month = 'Julai';}
   if(month_number == 7){month = 'Ogos';}
   if(month_number == 8){month = 'September';}
   if(month_number == 9){month = 'Oktober';}
   if(month_number == 10){month = 'November';}
   if(month_number == 11){month = 'Disember';}


   if(day_of_week_number == 0){day_of_week = 'Ahad';}
   if(day_of_week_number == 1){day_of_week = 'Isnin';}
   if(day_of_week_number == 2){day_of_week = 'Selasa';}
   if(day_of_week_number == 3){day_of_week = 'Rabu';}
   if(day_of_week_number == 4){day_of_week = 'Khamis';}
   if(day_of_week_number == 5){day_of_week = 'Jumaat';}
   if(day_of_week_number == 6){day_of_week = 'Sabtu';}

   var date_to_show = day_of_week + ', ' + day_of_month  + ' ' + month + ' ' + year; 

   document.write('<font size=1 face="VERDANA, ARIAL, HELVETICA, SANS-SERIF">' + date_to_show.fontcolor("#A56F37") + '</font>');
 
 //end display date
//-->