function fenetre(URL, nom, l, h){
	var options= 'width='+l+',length='+h+',status=no';
	var newfen=window.open(URL,nom,options);
}
//fonction verif email
function is_email_ok(email)
      {
      var ok=true;
      ok=ok && (email.indexOf('@')>0) && (email.length - email.lastIndexOf('.') <5);
      if(!ok) alert('Votre adresse email est incorrecte');
      return ok;
      }
	  
//fonction verif champ
function is_champ_ok(champ,info)
      {
      var ok=true;
      ok=ok && ( champ.length>0 );
      if(!ok) alert(info);
      return ok;
      }		

