function open_popup(page,hauteur,largeur) { 
	window.open(page,"Popup","status=no,scrollbars=yes,resizable=no,height="+hauteur+",width="+largeur+",top=0,left=0"); 
}

function submitNewsletter(argForm) {
	if(argForm.email.value==0) {
		alert("Veuillez saisir votre E-mail !"); 
	}
	else {
		argForm.submit();
	}
}
