function iSubmitEnter(oEvento){ 
     var iAscii; 
     if (oEvento.keyCode) 
         iAscii = oEvento.keyCode; 
     else if (oEvento.which) 
         iAscii = oEvento.which; 
     else 
         return false; 

     if (iAscii == 13) onurl(); 

     return true; 
} 

function onurl() {
	var busqueda=document.getElementById('s').value;
busqueda = busqueda.replace(/ /g, '-');
	var url = "http://juegoringa.com/search/"+busqueda+"/";
	document.location.href=url;
	 
}




