var warning = ""; function checkForm() { if (checkFields()) { for (i=0; i < document.your_contact_form.elements.length; i++) { if (document.your_contact_form.elements[i].value == 0) document.your_contact_form.elements[i].disabled=true; } document.your_contact_form.action = '/es/_meta/contact/confirmcontact_has2.jsp'; document.your_contact_form.submit(); return false; } return false; } function checkFields(){ var check = true; if (!checkPhoneEmail()) check = false; if (!checkSurname()) check = false; if (!checkFirstname()) check = false; if (!checkMessage()) check = false; if (!check) alert(warning); return check; } function showWarning(elem,id) { var message = "Por favor, complete los campos marcados con asterisco."; if (id==1) message = "Por favor, complete con un e-mail válido "; document.getElementsByName(elem)[0].style.border = "1px solid red"; //alert(message); warning = message; return false; } function checkFirstname(){ if (document.your_contact_form.firstname.value.length < 2) { showWarning("firstname",0); document.your_contact_form.firstname.focus(); return false; } else return true; } function checkSurname(){ if (document.your_contact_form.surname.value.length < 2) { showWarning("surname",0); document.your_contact_form.surname.focus(); return false; } else return true; } function checkMessage(){ if (document.your_contact_form.message.value.length < 2) { showWarning("message",0); document.your_contact_form.message.focus(); return false; } else return true; } function checkPhoneEmail(){ var chkPhone = true; var chkEmail = true; var isAdress = true; unBorder(document.your_contact_form.phone); unBorder(document.your_contact_form.email); // ### check phone ### if (document.your_contact_form.phone.value.length < 2) chkPhone = false; // ### check email ### if (document.your_contact_form.email.value.length < 2) chkEmail = false; else if ((document.your_contact_form.email.value.indexOf('@') == -1) || (document.your_contact_form.email.value.indexOf('.') == -1)) isAdress = false; if (!chkEmail && !chkPhone){ // ### both fields empty ### showWarning("phone",0); showWarning("email",0); document.your_contact_form.email.focus(); return false; } else if (chkEmail && !isAdress){ // ### wrong address format ### showWarning("email",1); document.your_contact_form.email.focus(); return false; } else return true; } function unBorder (obj) { obj.style.border = '0'; // if( (navigator.appName == "Microsoft Internet Explorer" ) && (parseInt(navigator.appVersion) < 7) ) obj.style.borderLeft = "1px solid #cacacb"; // if ((navigator.userAgent.indexOf('MSIE 6')!=-1) && (obj.tagName.toLowerCase()=='input')) obj.style.borderLeft = '1px solid #cacacb'; if (((navigator.userAgent.indexOf('MSIE 6')!=-1)||(navigator.userAgent.indexOf('MSIE 7')!=-1))&&(obj.tagName.toLowerCase()=='input')) { obj.style.borderLeft = '1px solid #cacacb'; } if ((navigator.userAgent.indexOf('MSIE 7')!=-1)&&(obj.tagName.toLowerCase()=='textarea')) { obj.style.borderTop = '1px solid #cacacb'; obj.style.borderBottom = '1px solid #cacacb'; obj.style.borderLeft = '1px solid #cacacb'; } return false } function showContactAddress (cid) { for(i=0;i