<!--Systematik-->

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

   document.forms[0].elements[0].blur();
   return;
  }
}

<!--/Ende Systematik-->