<!--
 
function onError( inputObject, errorMessage )
{
 alert(errorMessage);
 inputObject.focus();
 inputObject.select();
 
}
 
function Test_Validator(theForm)
{	
 
if (theForm.strbus.value == "")
  {
   onError(theForm.strbus,"POR FAVOR, INGRESE EL PRODUCTO A  BUSCAR \n (min 3 caracteres)");
 return false;
      }
 
if ( theForm.strbus.value.length < 3)
  		{
		alert("El campo de busqueda debe tener al menos 3 caracteres");
		return false;
		}

return true;



}
-->
