<!--
   window.defaultStatus = 'AXIOM REAL SLOVENSKO, s.r.o.';
//-->

NewWindow = null;

function ShowItem(src, w, h){
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>ukáky</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"
+"</body>\n"
+"</html>"
);
NewWindow.document.close();
NewWindow.focus();
}