// JavaScript Document

function jumpTo(URL_List){
   var URL = URL_List.options[URL_List.selectedIndex].value;
   window.location.href = URL;
}

function butClearTextbox() {
   var myForm=document.search;
	 myForm.q.value = "";
	 }