<!--
function GoSelected(x)
{
  document.forms[0].reset();

  if (x == "none")
  {
    return;
  }
  else
  {
    parent.location.href = x;
  }
}
//-->