// JavaScript Document

function mailing(){
var lemail= document.getElementById("mail").value;
var verif     = /^[a-zA-Z0-9_-_.]+@[a-zA-Z0-9-]{2,}[.][a-zA-Z]{2,3}$/ ;
	if (verif.exec(lemail) == null){ 
	alert("Veuillez saisir une adresse email correcte !");
	}
	else{
	window.open("mailing.php?lemail="+lemail,'image','left=0,top=200,width=400,height=100,status=no,toolbar=no,scrollbars=no,resizable=no');	
	}
}
function quit(cible){
document.getElementById(cible).style.display="none";
}

function Signer(){
var lesoptions = 'top=0,left=200,width=600,height=450,toolbar=no,scrollbars=no,resizable=no,location=no';
window.open('signer.php','Signature',lesoptions)
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
