function MyPrintPage(){
    var printtext = "no text";
	var pictext = "";
    printtext = document.getElementById("divCont").innerHTML; //innerText
	pictext = document.getElementById("divPics").innerHTML; //innerText
	var PrintWindow;
	PrintWindow = window.open("","PrintPage","width=800,height=650,resizable=yes,scrollbars=yes,left=20,top=20");
	PrintWindow.document.write("<html><head><title>Druckansicht</title>");	
	PrintWindow.document.write("<link rel=stylesheet type=text/css href=../style.css></head>");
	PrintWindow.document.write("<body>");
	PrintWindow.document.write("<table height=200 align=left><tr><td colspan=2 nowrap><img src=../img/02.jpg border=0><a href=javascript:window.print()><img src=../img/04.jpg border=0></a></td></tr>");
	PrintWindow.document.write("<tr><td valign=top>"+pictext+"</td><td>"+printtext);		
	PrintWindow.document.write("</td></tr><tr><td><font face=Arial size=2><a href=javascript:window.close() style=color:black;>Fenster schlie&szlig;en</a></font></td><td>"); 
	PrintWindow.document.write("</td></tr></table><br><br></body>");        
	PrintWindow.document.write("</html>");
	PrintWindow.document.close();
}
