function ProcesarBusqueda()
{
    var theForm = document.forms['Form'];
    if (!theForm) {
        theForm = document.Form;
    }
    
    //Caracteres invalidos
    var TextoBusqueda = theForm.SearchTermArt.value;
    TextoBusqueda = TextoBusqueda.replace(":","");
    TextoBusqueda = TextoBusqueda.replace("&","");
    TextoBusqueda = TextoBusqueda.replace("*","");
    TextoBusqueda = TextoBusqueda.replace(".","");
    TextoBusqueda = TextoBusqueda.replace("+","");
    
    if (TextoBusqueda == '')
        alert('Debe ingresar un texto v\u00E1lido para la b\u00FAsqueda.')
    else
        window.location.href= '/tabid/37/SearchTerm/' + TextoBusqueda + '/Default.aspx';
}
