<!--
function noEntry() {
mt=document.Search.searchvalue.value;
mt = RemoveBad(mt);
document.Search.searchvalue.value = mt;
if (mt.length<3) {
    alert("Search Must Include 3 or More Characters!!!");
    document.Search.searchvalue.value="**Enter Search Here";
    document.Search.searchvalue.focus();
    return false;
}
if ((mt.length<1)||(mt.substring(0,2)=="**")) {
    alert("Please enter something to search for!!!");
    document.Search.searchvalue.value="**Enter Search Here";
    document.Search.searchvalue.focus();
    return false;
}
else { return true; }
}

function gotopage() {
var whereindex=document.GoToPage.ThePage.selectedIndex;
var whereto = document.GoToPage.ThePage[whereindex].value
var UID = document.GoToPage.QI.value
var progid = document.GoToPage.programid.value
if (whereto == 99) { location = "../USTHome.asp?QI=" + UID; }
if (whereto == 0) { location = "../USTEXBico.asp?QI=" + UID; }
if (whereto == 1) { location = "../USTEXFAS.asp?QI=" + UID;  }
if (whereto == 2) { location = "../USTEXHS2.asp?QI=" + UID; }
if (whereto == 3) { location = "../USTEXHS4.asp?QI=" + UID; }
if (whereto == 4) { location = "../USTEXHS6.asp?QI=" + UID; }
if (whereto == 5) { location = "../USTEXHS10.asp?QI=" + UID; }
if (whereto == 6) { location = "../USTIMBico.asp?QI=" + UID; }
if (whereto == 7) { location = "../USTIMFas.asp?QI=" + UID; }
if (whereto == 8) { location = "../USTIMHS2.asp?QI=" + UID; }
if (whereto == 9) { location = "../USTIMHS4.asp?QI=" + UID; }
if (whereto == 10) { location = "../USTIMHS6.asp?QI=" + UID; }
if (whereto == 11) { location = "../USTIMHS10.asp?QI=" + UID; }
if (whereto == 12) { location = "../USTRXHS2.asp?QI=" + UID; }
if (whereto == 13) { location = "../USTRXHS4.asp?QI=" + UID; }
if (whereto == 14) { location = "../USTRXHS6.asp?QI=" + UID; }
if (whereto == 15) { location = "../USTRXHS10.asp?QI=" + UID; }
if (whereto == 16) { location = "../USTExFatus.asp?QI=" + UID; }
if (whereto == 17) { location = "../USTImFatus.asp?QI=" + UID; }
if (whereto == 18) { location = "../USTRxFatus.asp?QI=" + UID; }
if (whereto == 19) { location = "../USTSaved.asp?QI=" + UID; }
if (whereto == 20) { location = "../USTLogin.asp?type=0&progid=" + progid; }
if (whereto == 21) { location = "../USTHelp.asp?QI=" + UID; }
if (whereto == 22) { location = "../USTTips.asp?QI=" + UID; }
if (whereto == 23) { location = "../Release.asp?QI=" + UID; }
if (whereto == 24) { location = "../USTRXBico.asp?QI=" + UID; }
if (whereto == 25) { location = "../USTRXFAS.asp?QI=" + UID;  }
return;
}

function RemoveBad(strTemp) { 
strTemp = strTemp.replace(/\<|\>|\/|\"|\'|\%|\;|\(|\)|\&|\+|\-/g,""); 
return strTemp;
}  

// -->
