function gothere(){
	var box = document.navform.navbox;
	var where_to = box.options[box.options.selectedIndex].value;
	
	if (where_to == "") {return}
		else {window.location = where_to;}
	}
	function gothere1(){
	var box = document.navform1.navbox1;
	var where_to = box.options[box.options.selectedIndex].value;
	
	if (where_to == "") {return}
		else {window.location = where_to;}
}

function gotosite(){
	var theform = document.businesstype.businessoptions;
	var goto = theform.options[theform.options.selectedIndex].value;
	
	if(goto == ""){
		return;	
	}else{
		window.location = goto;	
	}
}
