
function openPopup(popURL, width, height) {
	var popLeft = (screen.width - width) / 2 - 4;
	var popTop = (screen.height - height) / 2;
	passPop=window.open(popURL,"","width="+width+",height="+height+",top="+popTop+",left="+popLeft+",")
}

function printPage() {
//	alert("Ajánlott nyomtatási forma: fekvő /landscape/");
	if (window.print) {
		setTimeout('window.print();',200);
	}
	else if (agt.indexOf("mac") != -1) {
		alert("Nyomja meg a 'Cmd+p' gombokat az oldal nyomtatásához!");
	}
	else {
		alert("Nyomja meg a 'Ctrl+p' gombokat az oldal nyomtatásához!")
	}
}
