﻿function foto(meno,x,y) 
{ 
var okno=window.open('','okno','width='+x+',height='+y+',resizble=0,menubar=0,toolbar=0,left=10,top=10,directories=0,location=0,scroolbars=0,copyhistory=0,status=1'); 
okno.document.open(); 
okno.document.writeln('<html>\n<head>\n<title>zoom fotky</title>\n</head>\n<body bgcolor="#4D70AF" topmargin="0" leftmargin="0">'); 
okno.document.writeln('<img src="'+meno+'.jpg">'); 
okno.document.writeln('<center><input type="button" onClick="window.close()" value="Zavřít okno!"></center>');
					 
okno.document.writeln('</body>\n</html>'); 
okno.document.close(); 
} 

function zobrazSkryj(idecko){
el=document.getElementById(idecko).style;
el.display=(el.display == 'block')?'none':'block';
}
