function Go(x) {
  if (x == "nothing") {
    document.forms[0].reset();
    parent.frames[2].focus();
    return;
  } else {
    parent.location.href = "index.php?" + x;
  }
}
