function searchfuncion()
{
   var campoBusqueda = document.getElementById('busqueda');
   var RegExPattern = /^[a-zA-Z áéíóúAÉÍÓÚÑñ0-9_]+$/;
   if(!campoBusqueda.value.match(RegExPattern))
   {
     campoBusqueda.value="";
   }
   
   location.href = "?do=resultado&busqueda="+campoBusqueda.value;

   
}

function enter(evento)
{
    if( evento.keyCode == 13 )
    {
        searchfuncion();
    }
}
