function afficheId(baliseId) { if (document.getElementById && document.getElementById(baliseId) != null) { document.getElementById(baliseId).style.visibility='visible'; document.getElementById(baliseId).style.display='block'; } } function cacheId(baliseId) { if (document.getElementById && document.getElementById(baliseId) != null) { document.getElementById(baliseId).style.visibility='hidden'; document.getElementById(baliseId).style.display='none'; } } function verif_formulaire() { if(document.myForm.firstname.value == ""){ window.alert('Introduzca su nombre por favor'); document.myForm.firstname.focus(); return false; } if(document.myForm.lastname.value == ""){ window.alert('Introduzca su apellido por favor'); document.myForm.lastname.focus(); return false; } if(document.myForm.email.value == ""){ window.alert('Introduzca su correo electrónico por favor'); document.myForm.email.focus(); return false; } adresse = document.myForm.email.value; var place = adresse.indexOf("@",1); var point = adresse.indexOf(".",place+1); if ((place > -1)&&(adresse.length >2)&&(point > 1)) { } else { window.alert("No es una dirección electónica"); document.myForm.email.focus(); return false; } if(document.myForm.comment.value == ""){ window.alert('Su comentario debe sobrepasar 200 letras'); document.myForm.comment.focus(); return false; } if(document.myForm.comment.value.length < 200) { window.alert('Su comentario debe sobrepasar 200 letras'); document.myForm.comment.focus(); return false; } if(document.myForm.langue.checked == false) { window.alert('Redacte un comentario en español por favor'); document.myForm.langue.focus(); return false; } else { formObj.submit();cacheId('addcomments');cacheId('ajouteruncom'); } } function verif_formulaire_reco_mokri() { if(document.myFormReco.firstname.value == ""){ window.alert('Introduzca su nombre por favor'); document.myFormReco.firstname.focus(); return false; } if(document.myFormReco.lastname.value == ""){ window.alert('Introduzca su apellido por favor'); document.myFormReco.lastname.focus(); return false; } if(document.myFormReco.email.value == ""){ window.alert('Introduzca su correo electrónico por favor'); document.myFormReco.email.focus(); return false; } adresse = document.myFormReco.email.value; var place = adresse.indexOf("@",1); var point = adresse.indexOf(".",place+1); if ((place > -1)&&(adresse.length >2)&&(point > 1)) { } else { window.alert("No es una dirección electrónica"); document.myFormReco.email.focus(); return false; } if(document.myFormReco.email2.value == ""){ window.alert('Introduzca el correo electrónico de su amigo'); document.myFormReco.email2.focus(); return false; } adresse2 = document.myFormReco.email2.value; var place2 = adresse2.indexOf("@",1); var point2 = adresse2.indexOf(".",place+1); if ((place2 > -1)&&(adresse2.length >2)&&(point2 > 1)) { formObjReco.submit();cacheId('reco22'); document.getElementById('ajoutereco').removeAttribute("href"); document.getElementById('ajoutereco2').removeAttribute("href"); document.getElementById('reco22').innerHtml=''; } else { window.alert("No es una dirección electrónica"); document.myFormReco.email2.focus(); return false; } }