function fnPopulateHiddenFields( sGS,sEVENT ) {
  frmSearch.hdnGS.value = sGS;
  frmSearch.hdnEV.value = sEVENT;
}

function GoToURL() {
  var strGrandSlam = frmSearch.hdnGS.value;
  var strEvent = frmSearch.hdnEV.value;
  strPage = strGrandSlam + strEvent;
  if (( strGrandSlam == "AO" )  && ( strEvent == "BS" )) { strPage = "index" } 
  top.location.href = location.href.substring( 0, location.href.lastIndexOf('/') + 1 ) + strPage + ".asp"
}