function verifier(f) {
verif = noHtml(f.comm.value);
f.comm.value = verif;
resn = nonVide(f.nom);
if (resn == false) {
alert('Veuillez remplir :\nVotre pseudo ?');
f.nom.focus();
return false;
 }
resc = nonVide(f.comm);
if (resc == false) {
alert('Veuillez remplir :\nle commentaire !');
f.comm.focus();
return false;
}
} 
function nonVide(mt) {
if (mt.value.length <1) {
return false;
}
else {
return true;
 }
 }
function noHtml(txt) {
a = txt.indexOf('<');
b = txt.indexOf('>');
len = txt.length;
c = txt.substring(0, a);
if (a == -1) {
return txt;
 }
if (b == -1) {
b = a;
 }
else {
balise = txt.substring((a + 1), b);
 } 
 d = txt.substring((b + 1), len);
 txt = c + balise + d;
 cont = txt.indexOf('<');
 if (cont != -1) {
 txt = noHtml(txt);
 }
 return txt;
 }
