function print_page() {
	if (typeof(document.getElementById("Main"))=='object') {
		var PrintMainElement=document.getElementById("Main");
		var PrintWindow = window.open("", "Print", 'width=800,height=600');	
		if(document.all) {
			PrintWindow.document.createStyleSheet('../kehlet_stylesheet.css');
		}
		PrintWindow.document.title=document.title;
		var TableObject=PrintMainElement;
		for (i=0;i<TableObject.rows.length && i<2;i++) { // delete row 2+3
			TableObject.deleteRow(1);
		}
		var PrintWindowString='<table align="center" width="100%">'+PrintMainElement.innerHTML+'</table>';
		PrintWindow.document.body.innerHTML=PrintWindowString;
		PrintWindow.print();
	} else {
		window.print();
	}
	return false;
}


function ShowPopup(Img) {
	PopupWindow = window.open("popup.php?Img="+Img, "Popup", 'width=415,height=510');
	PopupWindow.focus();
	return false;
}
