function validarContacto(){var nombre=document.getElementById('nombre').value.trim();var email=document.getElementById('mail').value.trim();if(nombre.length==0||nombre=='Ingrese su nombre y apellido'){alert('El nombre es obligatorio');return false;}
if(email.length==0||email=='Ingrese su correo electrónico'){alert('La direccion de e-mail es obligatoria');return false;}
if(!hasEmailFormat(email)){alert('La direccion de e-mail no tiene un formato válido');return false;}
if(document.getElementById('comentario')){var cuerpo=document.getElementById('comentario').value.replace("\n",'<br />').replace("\r",'').trim();if(cuerpo.length==0||cuerpo=='Escriba un comentario'){alert('El comentario es obligatorio');return false;}}
return true;}
function validarReserva(){var nombre=document.getElementById('nombre').value.trim();var email=document.getElementById('mail').value.trim();var telefono=document.getElementById('telefono').value.trim();var horario=document.getElementById('horario').value.trim();if(nombre.length==0||nombre=='Ingrese su nombre y apellido'){alert('El nombre es obligatorio');return false;}
if(email.length==0||email=='Ingrese su correo electrónico'){alert('La direccion de e-mail es obligatoria');return false;}
if(!hasEmailFormat(email)){alert('La direccion de e-mail no tiene un formato válido');return false;}
if(telefono.length==0){alert('El teléfono de contacto es obligatorio');return false;}
if(horario.length==0){alert('El horario de contacto es obligatorio');return false;}
return true;}
function validarContactoComercios(){var nombre=document.getElementById('nombre').value.trim();var razon=document.getElementById('razon').value.trim();var direccion=document.getElementById('direccion').value.trim();var localidad=document.getElementById('localidad').value.trim();var telefono=document.getElementById('telefono').value.trim();var email=document.getElementById('mail').value.trim();var cuit1=document.getElementById('cuit1').value.trim();var cuit2=document.getElementById('cuit2').value.trim();var cuit3=document.getElementById('cuit3').value.trim();if(nombre.length==0||nombre=='Ingrese su nombre y apellido'){alert('El nombre es obligatorio');return false;}
if(razon.length==0||razon=='Ingrese el nombre/razón social de su comercio'){alert('La razón social es obligatoria');return false;}
if(cuit1.length<2||cuit2.length<8||cuit3.length<1){alert('El número de CUIT ingresado no tiene un formato válido');return false;}
if(direccion.length==0||direccion=='Ingrese la dirección de su comercio'){alert('La dirección es obligatoria');return false;}
if(localidad.length==0){alert('La localidad es obligatoria');return false;}
if(telefono.length==0){alert('El teléfono es obligatorio');return false;}
if(email.length==0||email=='Ingrese su correo electrónico'){alert('La direccion de e-mail es obligatoria');return false;}
if(!hasEmailFormat(email)){alert('La direccion de e-mail no tiene un formato válido');return false;}
return true;}
function validarContactoProductos(){var nombre=document.getElementById('nombre').value.trim();var direccion=document.getElementById('direccion').value.trim();var localidad=document.getElementById('localidad').value.trim();var telefono=document.getElementById('telefono').value.trim();var email=document.getElementById('mail').value.trim();if(nombre.length==0||nombre=='Ingrese su nombre y apellido'){alert('El nombre es obligatorio');return false;}
if(direccion.length==0||direccion=='Ingrese su dirección'){alert('La dirección es obligatoria');return false;}
if(localidad.length==0){alert('La localidad es obligatoria');return false;}
if(telefono.length==0){alert('El teléfono es obligatorio');return false;}
if(email.length==0||email=='Ingrese su correo electrónico'){alert('La direccion de e-mail es obligatoria');return false;}
if(!hasEmailFormat(email)){alert('La direccion de e-mail no tiene un formato válido');return false;}
return true;}
function validarPromoAmigos(){var nombre=document.getElementById('nombre').value.trim();var telefono=document.getElementById('telefono').value.trim();var documento=document.getElementById('documento').value.trim();var horario=document.getElementById('horario').value.trim();var telefono_socio=document.getElementById('telefono_socio').value.trim();var nombre_socio=document.getElementById('nombre_socio').value.trim();var tarjeta1=document.getElementById('grupo1').value.trim();var tarjeta2=document.getElementById('grupo2').value.trim();var tarjeta3=document.getElementById('grupo3').value.trim();var email=document.getElementById('email').value.trim();var email_socio=document.getElementById('email_socio').value.trim();if(nombre.length==0||nombre=='Ingrese el nombre y apellido de su amigo'){alert('El nombre de su amigo es obligatorio');return false;}
if(email.length==0||email=='Ingrese su correo electrónico'){alert('La direccion de e-mail es obligatoria');return false;}
if(!hasEmailFormat(email)){alert('La direccion de e-mail no tiene un formato válido');return false;}
if(telefono.length==0){alert('El telefono de su amigo es obligatorio');return false;}
if(documento.length==0){alert('El documento de su amigo es obligatorio');return false;}
if(horario.length==0){alert('El horario para contactar a su amigo es obligatorio');return false;}
if(nombre_socio.length==0){alert('Su nombre es obligatorio');return false;}
if(email_socio.length==0){alert('La direccion de e-mail es obligatoria');return false;}
if(!hasEmailFormat(email_socio)){alert('La direccion de e-mail no tiene un formato válido');return false;}
if(telefono_socio.length==0){alert('Su teléfono es obligatorio');return false;}
if(tarjeta1.length<2||tarjeta2.length<4||tarjeta3.length<4){alert('El formato del número de tarjeta no es válido');return false;}
return true;}
function validarLocalidades(){var select=document.getElementById('select');var indiceSeleccionado=select.selectedIndex;if(indiceSeleccionado==0){alert('Debe seleccionar una localidad de la lista');return false;}
var opcionSeleccionada=select.options[indiceSeleccionado];var textoSeleccionado=opcionSeleccionada.text;var valorSeleccionado=opcionSeleccionada.value.split('-');setCookie('elebar_localidad',valorSeleccionado[0],60,'/',null,null);setCookie('elebar_cp',valorSeleccionado[1],60,'/',null,null);return true;}
function setInputProperties(input,value){input.value=value;input.originalText=value;input.onfocus=function(){if(this.value==this.originalText){this.value.length=0;}}
input.onclick=function(){if(this.value==this.originalText){this.value='';}}
input.onblur=function(){if(this.value.length==0||this.value==this.originalText){this.value=this.originalText;}}}
function validarCuestionario(){var nombre=document.getElementById('nya').value.trim();var dni=document.getElementById('dni').value.trim();var localidad=document.getElementById('localidad').value.trim();var email=document.getElementById('email').value.trim();var cel=document.getElementById('cel').value.trim();var horario=document.getElementById('horario').value.trim();var ocupacion=document.getElementById('ocupacion').value.trim();var si=document.getElementById('si');var no=document.getElementById('no');var cual=document.getElementById('cual').value.trim();if(nombre.length==0||nombre=='Ingrese su nombre y apellido'){alert('El nombre es obligatorio');return false;}
if(dni.length==0){alert('El número de DNI es obligatorio');return false;}
if(localidad.length==0||localidad=='Ingrese Localidad de Residencia'){alert('La Localidad de Residencia es obligatoria');return false;}
if(email.length==0||email=='Ingrese su dirección de correo electrónico'){alert('La direccion de e-mail es obligatoria');return false;}
if(!hasEmailFormat(email)){alert('La direccion de e-mail no tiene un formato válido');return false;}
if(cel.length==0){alert('EL teléfono de celular es obligatorio');return false;}
if(horario.length==0){alert('EL horario de contacto es obligatorio');return false;}
if(ocupacion.length==0){alert('La ocupación es obligatoria');return false;}
if(si.checked&&(cual.length==0)){alert('Indique tarjeta de crédito');return false;}
return true;}
