function printPage(){
	document.getElementById("printPage").style.display = "none";
	window.print();
}

function popup(url) {
 fenster=window.open(url, "Popupfenster", "width=630, height=586, resizable=yes");
 fenster.focus();
 return false;
}
