function goto(form) { 
	var index=form.select.selectedIndex
	if (form.select.options[index].value != "") {
		window.open("http://"+form.select.options[index].value)	;
	}
}

