var now = new Date();
<!--now.setTime(now.getTime() - 2 * 24 * 60 * 60 * 1000);
var day = now.getDay();
var date = now.getDate();
var month = now.getMonth();
var year = now.getYear();
year += (year < 1900) ? 1900 : 0;

var days = new Array();
days[0] = "Ahad";
days[1] = "Isnin";
days[2] = "Selasa";
days[3] = "Rabu";
days[4] = "Khamis";
days[5] = "Jumaat";
days[6] = "Sabtu";

var months = new Array();
months[0] = "Januari";
months[1] = "Febuari";
months[2] = "Mac";
months[3] = "April";
months[4] = "Mei";
months[5] = "Jun";
months[6] = "Julai";
months[7] = "Ogos";
months[8] = "September";
months[9] = "Oktober";
months[10] = "November";
months[11] = "Disember";

document.write(days[day] + ", " + date + " " + months[month] + " " + year);

