function searchLinks(){

     for (i = 0; i <= 1; i++){
	if (document.form.Radio1[i].checked == true){
		selection = document.form.Radio1[i].value; 
    	}
     }

     if (selection == "1"){searchLinks1();} //Web Search

     if (selection == "2"){searchLinks2();} //Sponser Search

     return false;

}

function searchLinks1(){
    User_Input = document.form.search.value;
    
    var TheSelectedIndex = document.forms.form.DB.selectedIndex;
    var TheSelectedValue = document.forms.form.DB[TheSelectedIndex].value;
    var SelectedDB = document.forms.form.DB[TheSelectedIndex].text;
    if (SelectedDB === "All"){SelectedDB = 1;}
    top.location.href ="http://www.supremesearch3000.bravehost.com/Search.php?User_Input=" + User_Input + "&DB=" + SelectedDB;			
    return false;
}

function searchLinks2(){ 
    User_Input = document.form.search.value;
    top.location.href ="http://www.supremesearch3000.bravehost.com/Sponsor_Search.php?User_Input=" + User_Input;  
    return false;
}