function popup(MyPage){
	window.open(MyPage,'detail','width=730,height=590,scrollbars=0');
}
function play(MyPage,MyId){
	window.open('/acces-'+MyPage+'-'+MyId+'.htm','detail','width=730,height=595,scrollbars=1');
}

function ValidMail(url, mail){
	adresse =  document.getElementById(mail).value;
	var place = adresse.indexOf("@",1);
	var point = adresse.indexOf(".",place+1);
	if((place > -1)&&(adresse.length >2)&&(point > 1)){
		window.location.replace(url+adresse);
	}
	else {
		alert('Entrez une adresse e-mail valide !');
		document.getElementById(mail).focus();
	}
}
