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('Lütfen adınızı yazınız'); document.myForm.firstname.focus(); return false; } if(document.myForm.lastname.value == ""){ window.alert('Lütfen soyadınızı yazınız'); document.myForm.lastname.focus(); return false; } if(document.myForm.email.value == ""){ window.alert('E-posta adresinizi yazınız'); 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("Girdiğiniz adres yanlıştır."); document.myForm.email.focus(); return false; } if(document.myForm.comment.value == ""){ window.alert('Yorumunuz en az 200 karakter içermelidir.'); document.myForm.comment.focus(); return false; } if(document.myForm.comment.value.length < 200) { window.alert('Yorumunuz en az 200 karakter içermelidir.'); document.myForm.comment.focus(); return false; } if(document.myForm.langue.checked == false) { window.alert('Youmunuzu, lütfen, Türkçe yazınız.'); 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('Adınızı yazın'); document.myFormReco.firstname.focus(); return false; } if(document.myFormReco.lastname.value == ""){ window.alert('Soyadınızı yazın'); document.myFormReco.lastname.focus(); return false; } if(document.myFormReco.email.value == ""){ window.alert('E posta adresinizi yazın'); 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("Yazdığınız adres yanlıştır"); document.myFormReco.email.focus(); return false; } if(document.myFormReco.email2.value == ""){ window.alert('Arkadaşınızın e-posta adresini yazın'); 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("Yazdığınız adres yanlıştır"); document.myFormReco.email2.focus(); return false; } }