function choix(url_goto) {

	msgQuestion = "Voulez vous accéder à un contenu reservé aux ADULTES ?";
	userResponse = confirm(msgQuestion);

	if (userResponse == 1) {
		location = url_goto;
	} else {
		return;
	}
}

function out(id){
	
	var largeur = screen.width;
	var hauteur = screen.height;

	window.open("http://www.films-dvd.be/out-"+id+".html","2","width="+largeur+",height="+hauteur+",left=0,top=0,toolbar=yes,menubar=yes,resizable=yes,location=yes,directories=yes,status=yes,scrollbars=yes,copyhistory=yes");
}
