﻿

function noveoknoOpen(origW, origH, alt, cesta)
{
textVlastnosti = "menubar=0, width=" + origW + ", height=" + origH;
	noveokno=window.open( "","foto",textVlastnosti );
	noveokno.document.write("<head>");
	noveokno.document.write("<title>:GALERIE - "+ alt +" </title>");
	noveokno.document.write("<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>");
	noveokno.document.write("</head>");
	noveokno.document.write("<body topmargin='0px' leftmargin='0px' bgcolor='#FF7F15'>");
	noveokno.document.write("<div style='position: absolute'><img border='0' src='"+ cesta +"' onclick='window.close()' style='cursor:hand' title='kliknutim zavřete okno'></div>");

	
//event.returnValue = false; //něco jako return false
}


