function couleur(obj) { obj.style.backgroundColor = "#FF8000"; } function check() { var msg = ""; if (document.newforum.titre.value == "") { document.newforum.titre.style.backgroundColor = "#FF8000"; document.newforum.titre.style.color = "#000000"; msg += "Le titre de votre message est vide !\n"; } if (msg == "") return(true); else { alert(msg); return(false); } }