function AgentPopUpId( aid, xs, ys, name, reuse )
{
  agwin = window.open( "showagent.php?id="+aid,name,"toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=" +
    xs + ",height=" + ys + ",left=150,top=150" );
  agwin.focus();
  return;
}

function IngPopUp( URL, xs, ys, name, reuse )
{
  ujwin = window.open( URL,name,"toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=" +
    xs + ",height=" + ys + ",left=1,top=1" );
  ujwin.focus();
  return;

  id  = name;
  if( !reuse )
  {
    day = new Date();
    id  = name + day.getTime();
  }

  comm = id + " = window.open( '" + URL + "','" + name + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=" + xs +
  ",height=" + ys + ",left = 100,top = 100');"

  eval( comm );
}

function bookMark() 
{
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4))
  {
    url = window.location.href;
    window.external.AddFavorite(url,document.title);
  }
  else 
  {
    var msg = "Készítsen könyvjelzőt!";
    if(navigator.appName == "Netscape") msg += " (CTRL-D)";
    alert(msg);
  }
}
