var isIE = false; var req; function comment(urls,lid) { theform = "commentform"; loadXMLDoc(urls,"comment=" + document.getElementById("comment").value + "&link_id=" + lid + "&pseudo=" + document.getElementById("pseudo").value + "&Envoyer=true"); var node = document.getElementById('commentform'); } function loadcommentform() { txtavis = document.createElement('TEXTAREA'); txtavis.id = "comment"; txtavis.name = "comment"; txtavis.cols = "30"; txtavis.rows = "4"; document.getElementById('pavis').appendChild(txtavis); txtmail = document.createElement('INPUT'); txtmail.id = "pseudo"; txtmail.name = "pseudo"; txtmail.size = "30"; txtmail.type = "text"; document.getElementById('ppseudo').appendChild(txtmail); } function submitcommentform(lid){ var errors=''; if (document.getElementById('pseudo').value == '') { errors+='- Votre pseudo est obligatoire.\n';} if (document.getElementById('comment').value == '') { errors+='- Votre avis est obligatoire.\n';} if (errors) alert('Les renseignements suivants sont obligatoires:\n'+errors); document.MM_returnValue = (errors == ''); if (document.MM_returnValue) { comment("http://www.missechantillons.fr/commentsend.php",lid);} }