function check_contact_form(){ var alert_msg=''; from=document.cform.from.value; if(!from){ alert_msg+='Indiquez votre nom.\n'; } email=document.cform.email.value; if(!email){ alert_msg+='Indiquez une adresse e-mail valide.\n'; } message=document.cform.message.value; if(!message){ alert_msg+='Indiquez votre message.\n'; } if(alert_msg.length>0){ alert(alert_msg); return false; } return true; }