<!--
function PopUp(Ime, Width, Height) {
var Resizable = 0;
if (Width == 0) {
Width = ((screen.width > 1024) ? 874 : (screen.width - 150));
Resizable = 1;
}
if (Height == 0) {
Height = ((screen.height > 768) ? 618 : (screen.height - 150));
Resizable = 1;
}
window.open('', Ime, 'directories=0,location=0,menubar=0,resizable=' + Resizable + ',scrollbars=0,status=0,toolbar=0,left=' + Math.round((Math.random() * 50) + 25) + ',top=' + Math.round((Math.random() * 50) + 25) + ',width=' + Width + 'px,height=' + Height + 'px');
}
//-->