function show_Page(bild, x, y)
{

	text = "<html>\n";
	text += "<head>\n";
	text += "	<meta http-equiv='content-type' content='text/html;charset=iso-8859-1'>\n";
	text += "	<title>Rohr-Frei Abwasser-Service</title>\n";
	text += "	<link rel='stylesheet' href='./css/layout.css'>\n";
	text += "</head>\n";
	text += "<body bgcolor='#ffffff' leftmargin='0' marginwidth='0' topmargin='0' marginheight='0'>\n";
	text += "	<div align='center'>\n";
	text += "		<p><font size='2'><a href='javascript:self.close();' title='Klicken Sie auf das Bild, um das Fenster zu schlie&szlig;en'><img src='./images/"+bild+"' width="+x+" height="+y+" border='0' onclick='self.close()')></a><br>\n";
	text += "			Klicken sie auf das Bild, um das Fenster zu schließen</p>\n";
	text += "	</div>\n";
	text += "</body>\n";
	text += "</html>";
	
	x=x+20; 
	y=y+30; 
	if (typeof(newWindow) != 'undefined')
	{
		newWindow.close();
	}
	newWindow = window.open('','newWindow','width='+x+',height='+y+'');
	newWindow.document.write(text);
}
