  var WindowName=null;
	function OpenWindow(Path,X,Y) {
		if (WindowName!=null && !(WindowName.closed)) {
			WindowName.close();
		}
		WindowName=window.open("","picture","toolbar=0,location=0,scrollbars=0,width="+X+",height="+Y+",resizable=0,top=100,left=100");		
		WindowName.document.open();
		WindowName.document.write('<html><head><title>Ukázky :: TAXI Prostějov</title></head>');
		WindowName.document.write('<body style="background:#f0e581; margin:15px; padding:0;"><img style="cursor: pointer;cursor: hand;border:1px solid black;" onclick="window.close();" src="',Path,'" />');
		WindowName.document.write('</body></html>');
		WindowName.document.close();
	}