function pulsar(e) { 
  tecla = (document.all) ? e.keyCode :e.which; 
  if(tecla == 13){
	searchProducts();  
  }
  return (tecla!=13); 
} 


function searchProducts(){
	var p1 = "";
	/*p1 = escape(searchInputText.value);*/
	p1 = document.getElementById("searchInputText").value;
	document.getElementById("searchInputText").value="";
	location.href="#navbar=bus_"+p1;
}// JavaScript Document