  function champVide(c, msg)
  {
  		var v = c.value;
		if(v.length==0) {
			window.alert(msg);
			c.focus();
			return true;
		}
		return false;
  }
  
  function emailInvalide(c, msg) 
  {
  	  var v = c.value;
	  if(v.length>0 && v.indexOf("@")==-1) {
			window.alert(msg);
			c.focus();
			return true;
	  }
	  return false;
  }

