function pop(page, largeur, hauteur){
	var top		= (screen.height-hauteur)/2;
	var left	= (screen.width-largeur)/2;
	var fenetre = window.open(page,"pop_up"+Math.round((Math.random()*10000000000000)),"top="+top+",left="+left+",width="+largeur+", height="+hauteur+", resizable=yes,scrollbars=yes");
	fenetre.focus();
}
function pop2(page, largeur, hauteur){
	var top		= (screen.height-hauteur)/2;
	var left	= (screen.width-largeur)/2;
	var fenetre = window.open(page,"pop_up"+Math.round((Math.random()*10000000000000)),"top="+top+",left="+left+",width="+largeur+", height="+hauteur+",scrollbars=yes,status=yes,toolbar=yes,resizable=yes,menubar=yes,location=yes");
	fenetre.focus();
}
function pop3(page, largeur, hauteur){
	var top		= (screen.height-hauteur)/2;
	var left	= (screen.width-largeur)/2;
	var fenetre = window.open(page,"pop_up"+Math.round((Math.random()*10000000000000)),"top="+top+",left="+left+",width="+largeur+", height="+hauteur+",scrollbars=no,status=no,toolbar=no,resizable=no,menubar=no,location=no");
	fenetre.focus();
}
function timerRedirect(temps,myUrl){
	counter=setTimeout("redirect('"+myUrl+"')", temps*1000);
}
function redirect(myUrl){
	document.location.href = myUrl;	
}
function popMention(){
	pop('http://www.jockeydedanone.fr/mentions-legales.html', 700, (screen.availHeight-50));
}
function popCredit(){
	pop3('http://www.jockeydedanone.fr/credits.html', 467, 450);
}
