function getCalendarDate() {
	var months = new Array(13);
	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 now         = new Date();
	var monthnumber = now.getMonth();
	var monthname   = months[monthnumber];
	var monthday    = now.getDate();
	var year        = now.getYear();
	if(year < 2000) { year = year + 1900; }
	var dateString = year + '. ' + monthname + ' ' + monthday + '.';
	return dateString;
}
function alma() {
	var calendarDate = getCalendarDate();
	document.write(calendarDate);
	}