NewWindow = null;

function ShowItem(src, w, h, desc){
if(NewWindow){NewWindow.close();}
if(NewWindow==null || NewWindow.closed){
 settings=
 "left=10,"
 +"top=20,"
 +"width=" + w + ","
 +"height=" + h + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=no,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=no"
 NewWindow = window.open("",'Klose',settings);
}
NewWindow.document.open();
NewWindow.document.clear();
NewWindow.document.write(
"<html><head><title>Fotogaléria</title></head>\n"
+"<body topmargin=0 leftmargin=0 onclick=window.close(); onblur=\"window.close();\""
+"onload=\"window.resizeTo(picture.width+10, picture.height+30);\" bgcolor=#FFFFFF>\n"
+"<img id=picture src=" + src + " style=\"cursor: hand\" title=\"zavrieť okno\" border=0>\n"
+"<table style=\"font-family: sans-serif; font-size: 11px;text-align: left; color: #6D6E71; margin: 5px 5px 5px 5px;\" ><tr><td>" + desc + "</td></tr></table>\n"
+"</body>\n"
+"</html>"
);
NewWindow.document.close();
NewWindow.focus();
}




<!--
   window.defaultStatus = 'Studio7';
//-->

<!--
function hodiny()
{
	nazvy_dni=new Array("nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota");
	nazvy_mesicu=new Array("januára","februára","marca","apríla","mája","júna","júla","augusta","septembra","októbra","novembra","decembra");
	dnes=new Date();
	with(dnes)
	{
		den=getDate();
		rok=getFullYear();
		hodina=getHours();
		minuta=getMinutes();
		sekunda=getSeconds();
		nazev_dne=nazvy_dni[getDay()];
		nazev_mesice=nazvy_mesicu[getMonth()];
	}
	cas=hodina;
	cas+=(minuta<10 ? ":0" : ":")+minuta;
	cas+=(sekunda<10 ? ":0" : ":")+sekunda;
	document.all.text1.innerText=nazev_dne+", "+den+". "+nazev_mesice+" "+rok;
	document.all.text2.innerText=cas;
	window.setTimeout("hodiny()",1000);
}	
-->

