function PopupPic(sPicURL) {
	window.open("http://www.os-dobrovo.si/template/system/sys_image.php?"+sPicURL, "","resizable=1,HEIGHT=200,WIDTH=200");
} 

function openCenteredWindow(url, id, sirina, visina) {
    var width = sirina;
    var height = visina;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    window.open(url + "/template/system/sys_image.php?"+id, "", windowFeatures);
}

function PopupCredits(page) {
	window.open("http://www.mojportal.net/slo/credits/"+page,"Credits","menubar=no, status=no, scrollbars=no, menubar=no, width=280, height=350");
}

function PopupPrint() { 
	window.open(window.location.pathname+"/print", "_new", "status=no, scrollbars=yes, menubar=no, height=600, width=650"); 
} 

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}