function datum()
{
today = new Date();
var months = new Array(11);
months[0] = "Január";
months[1] = "Február";
months[2] = "Március";
months[3] = "Április";
months[4] = "Május";
months[5] = "Június";
months[6] = "Július";
months[7] = "Augusztus";
months[8] = "Szeptember";
months[9] = "Október";
months[10] = "November";
months[11] = "December";
var yearstring;
var year = today.getYear() % 100;
if ( year < 10 ) {
	yearstring = "0" + year;
} else {
	yearstring = year;
}
document.write("20" + yearstring+"."+months[today.getMonth()]+" "+today.getDate()+".");
}
