function goToInvitation(aButton)
{
		// Disable the go button
		//aButton.disabled = true;

    // Get the form
    var aForm = window.document.forms["boothForm"];
    var boothValue = aForm.booth.value.toLowerCase();
    var goButton = aForm.go;
    goButton.disabled = true;

    if ((boothValue == "ihrim") || (boothValue == "shrm"))
    {
      window.location = "/pUI/pMain/topGun/hr2006.php";
    }
    else if (boothValue == "fun")
    {
      window.location = "/pUI/pMain/topGun/fun2006.php";
    }
    else
    {
      boothValue = prompt("The value that you have entered, " + aForm.booth.value
      + ", is not correct. \n Please try again." );

      boothValue = boothValue.toLowerCase();

      if ((boothValue == "ihrim") || (boothValue == "shrm"))
      {
        window.location = "/pUI/pMain/topGun/hr2006.php";
      }
      else if (boothValue == "fun")
      {
        window.location = "/pUI/pMain/topGun/fun2006.php";
      }
      else
      {
        alert("Still not valid.\nGo to the TopGun apps home page?");
        window.location = "/pUI/pMain/topGun/index.php";
      }
    }

    // switch it back on again
    goButton.disabled = false;
		return false;  // do not go to submit

} // end of goToInvitation()