/* skripta za pop-up okna */

function Popup(url, h, w, l, t) {
poph = + h + 40 
popw = + w
disp = window.open("","pop","height=" + poph + ",width=" + popw + ",left=" + l + ",top=" + t + "");
content = '<HTML>';
content += '<HEAD>';
content += '<title>Eho.si</title>';
content += '</HEAD>';
content += '<BODY link="black" alink="black" vlink="black" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" background="" onBlur="self.close()">';
content += '<p align="center"><a href="#" onClick="self.close()"><img src="' + url + '" height="' + h + '" width="' + w + '" border="0"></a>';
content += '<br><font size="2px" face="Tahoma"><a href="#" onClick="self.close()">Zapri okno</a></font></p>';
content += '</BODY></HTML>';
disp.document.write(content);
disp.document.close();
}