function fnVerif(){
	if (document.contact.email.value==""){
		alert("Merci de renseigner votre email");
		document.contact.email.focus();
		return false;
	}else if ( ( -1== document.contact.email.value.indexOf( '@' ,0) ) || ( -1==document.contact.email.value.indexOf('.',0 ) ) ) {
		alert("Votre adresse Email est incorrecte");
		document.contact.email.focus();
		return false;
	}
	
	testm = false ;

 for (var j=1 ; j<(document.contact.email.value.length) ; j++) {
  if (document.contact.email.value.charAt(j)=='@') {
    if (j<(document.contact.email.value.length-4)){
      for (var k=j ; k<(document.contact.email.value.length-2) ; k++) {
       if (document.contact.email.value.charAt(k)=='.') testm = true;
      }
    }
  }
 }
 if (testm==false){
	 alert('Votre adresse e-mail est incorrecte.');
		document.contact.email.focus();
		return false;
 }
	if (document.contact.message.value=="Votre Message"){
		alert("Merci de renseigner votre message");
		document.contact.message.focus();
		return false;
	}
}