function gotoURL(form) {
	 var newLink = form.lo.value;
	 if(newLink == "") alert("You must make a selection.");
     else location.href = newLink;
     return false;
}