function ChequearErrorFormBuscador() {
  Form = document.FormBuscador;
  if (VerificarUnCampo(Form.Cadena,'==','','Falta ingresar el texto de búsqueda')) return false;
  return true;
}

function ChequearErrorFormTopLogin() {
  Form = document.FormTopLogin;
  Form.Email.value = Form.Email.value.toLowerCase();
  if (VerificarUnCampo(Form.Email,'==','','Falta ingresar su E-mail')) return false;
  if (VerificarEMail(Form.Email,'El E-mail ingresado es inválido')) return false;
  return true;
}

function ChequearErrorFormLogin() {
  Form = document.getElementById('FORMULARIO');
  Form.Email.value = Form.Email.value.toLowerCase();
  if (VerificarUnCampo(Form.Email,'==','','Falta ingresar su E-mail')) return false;
  if (VerificarEMail(Form.Email,'El E-mail ingresado es inválido')) return false;
  return true;
}

function ChequearErrorRegistro() {
  Form = document.getElementById('FORMULARIO');
  Form.Email.value = Form.Email.value.toLowerCase();
  if (VerificarUnCampo(Form.Nombre,'==','','Falta ingresar su Nombre')) return false;
  if (VerificarUnCampo(Form.Apellido,'==','','Falta ingresar su Apellido')) return false;
  if (VerificarUnCampo(Form.Direccion,'==','','Falta ingresar su Dirección')) return false;
  if (VerificarUnCampo(Form.Localidad,'==','','Falta ingresar su Localidad')) return false;
  if (VerificarUnCampo(Form.Provincia,'==','','Falta ingresar su Provincia')) return false;
  if (VerificarUnCampo(Form.Pais,'==','','Falta ingresar su País')) return false;
  if (VerificarUnCampo(Form.Telefono,'==','','Falta ingresar su Teléfono')) return false;
  if (VerificarUnCampo(Form.Email,'==','','Falta ingresar su E-mail')) return false;
  if (VerificarEMail(Form.Email,'El E-mail ingresado es inválido')) return false;
  return true;
}

function ChequearErrorServicio() {
  Form = document.getElementById('FORMULARIO');
  Form.Email.value = Form.Email.value.toLowerCase();
  if (VerificarUnCampo(Form.Nombre,'==','','Falta ingresar su Nombre')) return false;
  if (VerificarUnCampo(Form.Apellido,'==','','Falta ingresar su Apellido')) return false;
  if (VerificarUnCampo(Form.Direccion,'==','','Falta ingresar su Dirección')) return false;
  if (VerificarUnCampo(Form.Localidad,'==','','Falta ingresar su Localidad')) return false;
  if (VerificarUnCampo(Form.Telefono,'==','','Falta ingresar su Teléfono')) return false;
  if (VerificarUnCampo(Form.Email,'==','','Falta ingresar su E-mail')) return false;
  if (VerificarEMail(Form.Email,'El E-mail ingresado es inválido')) return false;
  if (VerificarUnCampo(Form.Motivo,'==','','Falta ingresar su Motivo de Pedido')) return false;
  return true;
}

function ChequearErrorContacto() {
  Form = document.getElementById('FORMULARIO');
  Form.Email.value = Form.Email.value.toLowerCase();
  if (VerificarUnCampo(Form.Nombre,'==','','Falta ingresar tu Nombre')) return false;
  if (VerificarUnCampo(Form.Apellido,'==','','Falta ingresar tu Apellido')) return false;
  if (VerificarUnCampo(Form.Email,'==','','Falta ingresar tu E-mail')) return false;
  if (VerificarEMail(Form.Email,'El E-mail ingresado es inválido')) return false;
  if (VerificarUnCampo(Form.Comentario,'==','','Falta ingresar tu Consulta')) return false;
  return true;
}

function ChequearErrorForosPregunta() {
  Form = document.getElementById('FORMULARIO');
  if (VerificarUnCampo(Form.Tema,'==','','Falta ingresar un Título')) return false;
  if (VerificarUnCampo(Form.Mensaje,'==','','Falta ingresar un Tema')) return false;
  return true;
}

function ChequearErrorForosRespuesta() {
  Form = document.getElementById('FORMULARIO');
  if (VerificarUnCampo(Form.Mensaje,'==','','Falta ingresar tu Mensaje')) return false;
  return true;
}



