// JavaScript Document
// Ex. d'utilisation : javascript:popup('86.php',380,415);
function popup(page,largeur,hauteur,options)
{
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
winWidth = 1010;
winheight = 660;
if (screen)
{
	winWidth = screen.width;
	winHeight = screen.height;
}
function popupWindow(win){
	newWindow = window.open(win,'popWin','toolbar=no,location=no,scrollbars=no,resizable=yes,width='+winWidth+',height='+winHeight+',left=0,top=0');
	newWindow.focus();
}
function entrez_fr()
{
	popupWindow("home-flash.php");
}

function entrez_en()
{
	popupWindow("home-flash-en.php");
}
