function realizarBusqueda () {
  var objCheck = new check("frmBuscador");
  var strError = "";

  objCheck.checkString("buscar", "el parámetro de búsqueda", 1, 50, false);
  strError = objCheck.toString();

  if (strError != "") {
    alert(strError);
	return false;
  }
  else {
    if (document.frmBuscador.inicio) {
     document.frmBuscador.inicio.value = 0;
    }
    document.frmBuscador.submit();
  }
}