function ShowFoto(sFoto,w,h) {
         newWin = window.open('','',"width="+w+",height="+h+",top=10,left=10");
         newWin.document.open;
         newWin.document.write('<html><head><title></title></head><body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"  onBlur="self.close();" onClick="self.close();">');
         newWin.document.write('<img src="'+sFoto+'" height="'+h+'" width="'+w+'">');
         newWin.document.write('</body></html>');
         newWin.document.close();
         newWin.focus;
}
    

function ShowReklama() {
       if (window.opener){
				window.opener.location='festyn04.html'; 
				window.opener.focus();    
		 }
		 else{
		 	 newWin = window.open('festyn04.html','','toolbar=yes, location=yes, menubar=yes, scrollbars=yes, status=yes, directories=yes top=0, left=10');
	       newWin.focus;
		 }
}