  function LoadPage()
  {
    if(top!=self)
    {
      if (window.opera) window.onload="noframeopera()";
      else top.location=self.location;
    }
  }


  function noframeopera()
  {
    document.links['nfop'].click();
  }


  function Go(x)
  {
   if(x == "nothing") {
     document.forms[0].reset();
     document.forms[0].elements[0].blur();
     return;
   }
   else {
     top.location.href = x;
     document.forms[0].reset();
     document.forms[0].elements[0].blur();
   }
  }