function Go(x)
  {
  if (top.frames.length > 0) 
    {
    frml = parent.window.frames.length - 2;
    }

  if(x == "nothing")
    {
    document.unic.reset();
    document.unic.elements[0].blur();
    return;
    }
  else
    {
    if (top.frames.length > 0)
      {
      parent.frames[frml].location.href = x;
      }
    if (parent.location.href == self.location.href)
      {
      window.location.href = x;
      }
    document.unic.reset();
    document.unic.elements[0].blur();
    }
  }


