function findBox1() { 
var whereto= document.searchBox.box1[document.searchBox.box1.selectedIndex].value;
location.href = whereto;
}

function findBox2() { 
var whereto= document.searchBox.box2[document.searchBox.box2.selectedIndex].value;
location.href = whereto;
}

function goto(url) {
	
	if(url != "")
		document.location.href = url;
}