function OAvtorju ()
{
  var w = screen.width;
  var h = screen.height;
  var ow = 300;
  var oh = 110;
  var ol = parseInt((w-ow-10)/2);
  var ot =  parseInt((h-oh-40)/2);
  if (ot < 0){ ot = 0; }

  var HTMLPopUp = window.open ('OAvtorjih.htm', 'Avtorji', 'width='+ow+',height='+oh+',left='+ol+',top='+ot)
}

function link(id)
{
	document.location = "PrintOEI.php?ID=" + id
}   
function popup(document,w,h,scroll) {
  var floater = null
  if (scroll==null) scroll=0;
  if (h>550) {
  	h=550;
  	scroll=1;
  }
  if (w>700) {
  	w=700;
  	scroll=1;
  }
  
  var ww = screen.width;
  var wh = screen.height;
  
  var ol = parseInt((ww-w-10)/2);
  var ot =  parseInt((wh-h-40)/2);
  
  floater = window.open('','popup'+scroll,'width='+w+',height='+h+',left='+ol+',top='+ot+',resizable=1,status=0,scrollbars='+scroll)
  if (floater != null) {
    if (floater.opener != window) {
      floater.close();
  	 floater = window.open('','popup','width='+w+',height='+h+',left='+ol+',top='+ot+',resizable=1,status=0,scrollbars='+scroll)
    }
    floater.location.href = document
    if (floater.resizeTo)  floater.resizeTo(w+10,h+30);
    floater.focus()
  }
}