﻿NewWindow = null;

function NoveOkno(linocka){
OtvorOkno = window.open(linocka);
}

function ShowItem(linka, sirka, vyska){

  if (navigator.appName=='Microsoft Internet Explorer')
  parent.self.opener="decus.sk";
  var leftpos = (screen.availWidth - 200)-40;
  resiz = (navigator.appName=="Netscape") ? 0 : 1;

vyska = vyska + 25;
sirka = sirka + 0;
winl = (screen.width-sirka)/2;
wint = (screen.height-vyska)/2 - 50;
if(NewWindow){NewWindow.close();}
if(NewWindow==null || NewWindow.closed){
 settings=
 "left=" + winl + ","
 +"top=" + wint + ","
 +"width=" + sirka + ","
 +"height=" + vyska + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=no,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=no"
 NewWindow = window.open("",'Zatvor',settings);
}

NewWindow.document.open();
NewWindow.document.clear();
NewWindow.document.write(
"<html><head><title>Krby Victory</title></head>\n"
+"<body style=\"font-family: Arial; margin: 0px auto 0px auto; text-align: center; font-size: 10pt; bgcolor:white\" onclick=\"window.close();\" onblur=\"window.close();\" >\n"
+"<img src=" + linka + " />\n "
+" Kliknutím na obrázok sa okno zatvorí <br />\n"
+"</body>\n"
+"</html>"
);
NewWindow.document.close();
NewWindow.focus();
}


