function cacher(partie)
{ if(document.getElementById)
document.getElementById(partie).style.display = 'none'
}
function afficher(partie)
{ if(document.getElementById)
document.getElementById(partie).style.display = 'block'
}

function CaracMax(texte, max)
{ if (texte.value.length >= max)
{ alert('Taille limite fixée à ' + max + ' caractères !') ; texte.value = texte.value.substr(0, max - 1) ;}
}

function couleur(obj) { obj.style.backgroundColor = "#FFFFFF";}
function check() { var msg = ""; if (document.formulaire.clecteurs_nom.value == "")
{ msg += "Veuillez saisir votre nom ou pseudonyme.\n"; document.formulaire.clecteurs_nom.style.backgroundColor = "#FFED6F";}
if (document.formulaire.clecteurs_ville.value == "")
{ msg += "Veuillez saisir votre ville.\n"; document.formulaire.clecteurs_ville.style.backgroundColor = "#FFED6F";}
if (document.formulaire.clecteurs_email.value == "")
{ msg += "Veuillez saisir votre email.\n"; document.formulaire.clecteurs_email.style.backgroundColor = "#FFED6F";}
if (msg == "") return(true); else { alert(msg); return(false);}
}