  function storewin()
  {
    var doboz=document.getElementById('rsski');
    if(doboz)
    {
      document.getElementById('rsski').innerHTML='';
    }
  }
  function addFav()
  {
    ctrl_d=0;
    if (navigator.userAgent.indexOf("Chrome")!=-1)
    {
      ctrl_d=1; //chrome
    }
    if(document.all)
    {
      window.external.AddFavorite(location.href,document.title); //ie
    }
    else
    {
      if(window.sidebar)
      {
        //window.sidebar.addPanel(document.title,location.href,'');
        //alert("Kedves felhasználó, a CTRL+D megnyomásával a \n"+location.href+" oldal könyvjelzőbe helyezhető");
        ctrl_d=1; //firefox
      }
    }
    if(ctrl_d)
    {
      document.getElementById('ctrld').innerHTML="<font title='Nyomja meg a CTRL és a D gombot együttesen!'>CTRL+D</font>";
    }
  }
  function loading(t)
  {
    document.getElementById('geting').innerHTML='<font style=\"font-family:Comic Sans Ms; font-size: 13px; color: #88FF88; font-weight:bold;\">'+t+' BETÖLTÉSE...</font>';
  }
  function ending()
  {
    document.getElementById('geting').innerHTML='';
  }
