NewWindow2=null;
function ShowWin(adreska, w, h) {
	if(NewWindow2){NewWindow2.close();}
	if(NewWindow2==null || NewWindow2.closed){
	 settings=
	 "left=20,"
	 +"top=20,"
	 +"width=" + w + ","
	 +"height=" + h + ","
	 +"toolbar=no,"
	 +"location=no,"
	 +"directories=no,"
	 +"status=no,"
	 +"menubar=no,"
	 +"scrollbars=no,"
	 +"resizable=no"
	 NewWindow2 = window.open(adreska,'okno',settings);
	}
	NewWindow2.focus();
	}
NewWindow = null;
NewWindow2 = null;

function ShowItem(src, w, h){
if(NewWindow){NewWindow.close();}
if(NewWindow==null || NewWindow.closed){
 settings=
 "left=20,"
 +"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>SLOVAK JEWISH HERITAGE</title></head>\n"
+"<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onclick=window.close(); onblur=\"window.close();\" bgcolor=#FFFFFF>\n"
+"<img src=" + src + " border=0>\n"
+"</body>\n"
+"</html>"
);
NewWindow.document.close();
NewWindow.focus();
}