function showDate()
{
	var months = new Array(11);
	var today = new Date();

	var month = today.getMonth();
	var date = today.getDate();
	var year = today.getFullYear();
	today = null;
	        
	months[0] = "Januari";
	months[1] = "Februari";
	months[2] = "Maret";
	months[3] = "April";
	months[4] = "Mei";
	months[5] = "Juni";
	months[6] = "Juli";
	months[7] = "Agustus";
	months[8] = "September";
	months[9] = "Oktober";
	months[10] = "Nopember";
	months[11] = "Desember";
	
	return(date + " " + months[month] + " " + year);
}