﻿function FormularioBuscador_DoSearch()
{
    var texto = $get('FormularioBuscador_txtSearch').value;
    if (texto == '' || texto == 'Ingrese texto...') {
        alert('No ha ingresado texto para la búsqueda');
        return true;
    }
    else {
        OpenUrlInTarget ('/articulos/archivo.aspx?show=buscar&rb=1&texto=' + texto, '_self');
	    return false;
	}
}

function FormularioBuscador_SelectAll(theField) {
  theField.focus()
  theField.select()
  return false;
}

function FormularioBuscador_SearchKeyDown (EventArg)
{	
	if ((EventArg.which && EventArg.which == 13) || (EventArg.keyCode && EventArg.keyCode == 13))
	{
		return FormularioBuscador_DoSearch();
	} 
    else 
	    return true;
}
