var BildGross = true;
		
function ShowPicture (PictureUrl, WWidth, WHeight, Description, Text)
{
	if (BildGross.closed==false) BildGross.window.close ();
	BildGross=window.open ("", "", "top=25,left=25,dependent=yes,width=" + WWidth + ",height=" + WHeight + ",resizeable=no,scrollbars=no");
	BildGross.focus ();
	BildGross.document.open ();
	BildGross.document.write ('<HTML>\n<Head>\n  <link rel=stylesheet type="text/css" href="main.css">\n  <Title>Seilerei Prutz GmbH - in der 5. Generation - ' + Description + '</Title>\n</Head>\n');
	BildGross.document.writeln ('<Body bgcolor=#FFFFFF marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>');
	BildGross.document.writeln ('  <Center><IMG src="bilder/' + PictureUrl + '" Alt="' + Description + '"><BR clear=all>');
	BildGross.document.writeln ('  <P>' + Text + '</P>');
	BildGross.document.writeln ('  <form><input type=button value="Schlie&szlig;en" onclick="JavaScript:window.close ();"></form></Center>');
	BildGross.document.write ('</Body>\n</HTML>');
	BildGross.document.close ();
}
