function go(){
			var str = document.getElementById("search_field").value;
			
			str=str.replace(/\s/g,'_');
			//location.href=str;
			document.search_form.action = str;
			document.search_form.submit();
		}

function chk_enter(evt){
	var evt = (evt) ? evt : ((event) ? event : null);
  	var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null); 
	if (evt.keyCode == 13){
		//alert ("S");
		go();
	}

}