
function goThere() {
  if (document.test.state.selectedIndex == 0) {
    alert("Please Select Your State"); 
  } else {
    if (document.test.county.selectedIndex == 0) {
      alert("Please Select Your County");
    } else {
	    var list1 = document.test.state;
	    var list2 = document.test.county;
	    var list3 = document.test.sic_desc;
	    var theProduct = document.test.county.options[list2.selectedIndex].value;
	    if(document.test.sic_desc.selectedIndex != 0 ) { 
		    var theDescbase = "&sic_desc=";
		    var theDesccode = document.test.sic_desc.options[list3.selectedIndex].value;
		    //var theDesccode = document.test.sic_desc.value;
		    var theDesc = theDescbase + theDesccode;
    //                alert(theDesccode);
     //               alert(theDesc);
		    location.href = "http://www.homeandgrounds.com/cgi-bin/" + theProduct + theDesc;
	    } else { 
		    location.href = "http://www.homeandgrounds.com/cgi-bin/" + theProduct;
	    }
    }
  }
}
