<!--
var days = new Array(7);
days[1]="Ahad";
days[2]="Senin";
days[3]="Selasa";
days[4]="Rabu";
days[5]="Kamis";
days[6]="Jumat";
days[7]="Sabtu";

var months = new Array(12);
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";

function getFullYear(theDate) {
	var year = theDate.getYear();
	// Older versions of Netscape and IE 5.0 deal with the millenium differently.
	// This HACK fixes those problems
	if(year<1900) {
    	year+=1900;
	}
	return year;
}

function getDateStr(theDate) {
//  return days[theDate.getDay()+1] + ", " + theDate.getDate() + " " + months[theDate.getMonth()+1] +" " + getFullYear(theDate);
  return theDate.getDate() + " " + months[theDate.getMonth()+1] +" " + getFullYear(theDate);
}

//-->