function popup(page){
	var popup = window.open(page,"pop","width=300,height=310,left=20,top=80,toolbar=0,scrollbars=no");
}

function fenetre(plan){
	var fenetre = window.open(plan,"pup","width=300,height=400,left=20,top=20,toolbar=0,scrollbars=no");
}

function load(file,target){
if (target != ''){
	target.window.location.href = file;
}else{
	window.location.href = file;
}
}

function GotoPage(p){
	load(p,opener);
}

function popupAI(page,ht,lg,nom){
	x=(screen.width-lg)/2;
	y=(screen.height-ht)/2;
	var popup = window.open(page,nom,"width="+lg+",height="+ht+",left="+x+",top="+y+",toolbar=0,scrollbars=no");
}

function news(){
	//verification de l'email
	var mail = document.frmform.email.value;
	if (mail.length > 1 && mail != "Votre e-mail"){
		mail2 = mail.split("@");
		mail3 = mail.split(".");
		if (mail2.length != 2 || mail3.length < 2 || mail2[0] == "" || mail2[1] == "" || mail3[0] == "" || mail3[1] == "" || mail.indexOf(" ") != -1){
			alert("L'adresse E-mail fournie n'est pas valide.\n");
		}else{
			emailnews = mail;
			popup('popup_newsletter.php?emailnews='+emailnews);
		}
	}
}