function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable){
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}


function verif_form_newsletter(ao_1,ao_2,ao_3) {
			if (ao_1.value!=ao_2.value) {			
					alert("Les adresses rentrées ne sont pas identiques !");		
			}else{
				if ((ao_1.value.indexOf('@',0)==-1) || (ao_1.value.indexOf('.',0)==-1)) {			
						alert("L\'adresse email n\'est pas valide !");		
				}else{				
					if((ao_1.value!="")&&(ao_3.value!="")&&(ao_3.value!="Veuillez recopier le code ici !")) {
									document.forms[0].submit();
							}else{
									alert("Veuillez remplir tous les champs SVP !");
							}
				}
			}
}
