
// ############################################################################## Bilder :: Fenster oeffnen
function imgWindow(imgGross,imgFoto)
{
	if (browserOK)
	{
		detailwin = window.open("","imagescreen","width=550,height=580,locationbar=no,menubar=yes,resizable=yes,status=no");
		detailwin.document.open("text/html");
		detailwin.document.writeln("");
		detailwin.document.writeln("<html>");
		detailwin.document.writeln("<head>");
		detailwin.document.writeln("<meta http-equiv='content-type' content='text/html;charset=iso-8859-1'>");
		detailwin.document.writeln("<title>Apartman Oliva : Zoom</title><style media='screen' type='text/css'><!-- a { font-family: Verdana, Geneva, Arial, Helvetica; text-decoration: none } .text { color: #5a5a5a; font-size: 11px; line-height: 18px; font-family: Verdana, Geneva, Arial, Helvetica; text-decoration: none } .foto { color: #808080; font-size: 10px; font-family: Verdana, Geneva, Arial, Helvetica; text-decoration: none } a:link { color: #1c3a66; font-family: Verdana, Geneva, Arial, Helvetica; text-decoration: none } a:visited { color: #4b6c9e; font-family: Verdana, Geneva, Arial, Helvetica; text-decoration: none } a:hover { color: #7db4aa; font-family: Verdana, Geneva, Arial, Helvetica; text-decoration: none } --></style></head>");
		detailwin.document.writeln("<body leftmargin='0' marginwidth='0' topmargin='0' marginheight='0' bgcolor='white'><div align='center'>");
		detailwin.document.writeln("<table border='0' cellpadding='0' cellspacing='0' width='95%' height='98%'><tr>");
		detailwin.document.writeln("<td valign='middle' align='center' height='520'><table border='0' cellpadding='0' cellspacing='0'><tr><td><a href='javascript:self.window.close();'><img src='" + imgGross + "' border='0'></a><br><span class='foto'>" + imgFoto + "</span></td></tr></table></td></tr>");
		detailwin.document.writeln("<tr height='15'><td valign='middle' align='center' height='20'><span class='text'><a href='javascript:self.window.close();'><b>close window</b></a></span></td></tr></table>");
		detailwin.document.writeln("</div></body>");
		detailwin.document.writeln("</html>");
		detailwin.document.close();
		detailwin.focus();
	}
}
