﻿
function Loading(placementID,dependentID,code) {// id "Loading" containera, id containera koji treba da se pojavi, kod koji se izvrsi nakon pojavljivanja containera
       { 
          if (document.getElementById(placementID).style.display=="none") {
                document.getElementById(placementID).style.display="block";
                if (arguments.length==3) {
                    if (window.execScript) {
                        window.execScript(code); // eval in global scope for IE
                        return null; // execScript doesn’t return anything
                      }
                    else eval(code);
                    }
                }
      }
  }
  
function pisiteAdminu() {
   document.getElementById("ctl00_ctrlMainMenu_pisiteAdminu").href = "mailto:administrator@ujn.gov.rs";
}

// da ubije liquid layout i zada fixnu sirinu strane kad resize padne ispod minimuma od 1025px

function resize()
{
    var a = 0;
    document.body.style.width="100%";
    if (document.body.offsetWidth < 1025) a=1;  
    else a=0;
    
    if (a==1) document.body.style.width="1014px"; 
    else document.body.style.width="100%";     
}

window.onresize = resize;
        