	function goto_url(form) {
			if (form.search_text.value == "") {
				alert("You have not entered any text");
				return false;
			}
	
			var url = form.search_select[form.search_select.selectedIndex].value + 

			escape(form.search_text.value);	
			document.location = url;

			return false;	
		}
		
	function jump(target,selObj)
		{	
  		eval(target+".location='"+selObj.options[selObj.selectedIndex].value+"'");
		}	
