function zoom(pho) {
	window.open("popup.php?photo="+pho,pho,"width=250,height=250,left=60,top=60,toolbar=0,scrollbars=no");
}

function list(pers) {
	// Email
	var message = "";
	var mail = pers;
	if (mail.length < 1){
		message += "Veuiilez entrer une adresse email valide.\n";
	}
	if (mail.length > 1){
		mail2 = mail.split("@");
		mail3 = mail.split(".");
		if (mail2.length != 2 || mail3.length < 2 || mail2[0] == "" || mail2[1] == "" || mail3[0] == "" || mail3[1] == "" || mail.indexOf(" ") != -1){
			message += "Veuiilez entrer une adresse email valide.\n";
		}
	}
	
	// Action
	if (message == ""){
		var y=(screen.height-250)/2;
		var x=(screen.width-400)/2;
		window.open("mailinglist.php?pers="+pers,"list","width=220,height=250,left="+x+",top="+y+",toolbar=0,scrollbars=no");
	}else{
		alert(message);
	}
	
	
}

function pdf(fich) {
	window.open("pdf/"+fich+".pdf","pdf","width=850,height=700,left=20,top=20,toolbar=0,scrollbars=no,resizable=yes");
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=700,left = 340,top = 262');");
}