function soumipop() {
  with(document.forms[0]) {
    for(i=0;i<5;i++) {
	  if (elements[i].value=="") {
	    alert("le champ ' " + elements[i].name + " ' doit être renseigné");
		return false;
		}
	  }
	}
  window.open('','_memb','height=300,width=400,top=1');
  with(document.forms[0]) {
    target="_memb";
	submit();
	}
  }