function popupleiras(page, scroll, w, h, name)
    {
    if (w == null)
        {
        w = 750;
        }

    if (h == null)
        {
        h = 500;
        }

    h = h - 20;

    if (scroll == null)
        {
        scroll = 'no';
        }

    if (name == null)
        {
        name = 'popupleiras';
        }

    l = (window.screen.width - (w + 10))/2;
    t = (window.screen.height - (h + 55 + 62))/2;
    settings = 'scrollbars=yes,resizable=yes,status=yes,menubar=no,width=' + w + ',height=' + h + ',left='
                 + l + ',top=' + t + ',screenX=' + l + ',screenY=' + t;
    win = window.open(page, 'korona', settings);
    win.focus();
    }
	
	

function popup(kep,scroll)
    {
      if (scroll==null) {scroll='no';}
      page='/favat/popup.php?kepfile='+kep+'&scroll='+scroll;
      w = 1;
      h = 1;
      l = 0;
      t = 0;
      settings = 'scrollbars=' + scroll + ',resizable=no,status=no,menubar=yes,width=' + w + ',height=' + h + ',left='
                 + l + ',top=' + t + ',screenX=' + l + ',screenY=' + t;
      win = window.open(page, 'popup', settings);
      win.focus(); 
}