function fVideo(sUrl, iLargeur, iHauteur){
	//var iPosX = (screen.width / 2) - (iLargeur / 2);
	//var iPosY = (screen.height / 2) - (iHauteur / 2);
	//var video = window.open(sUrl, "Video", "width="+iLargeur+",height="+iHauteur+",left="+iPosX+",top="+iPosY+",resizable=0");
	scroll(0,0);
	document.getElementById('iIdOverlay').style.display='block';
	document.getElementById('iIdVideo').style.display='block';
}

function fFermer(sPage){
	document.location.href=sPage;
	document.getElementById('iIdOverlay').style.display='none';
	document.getElementById('iIdVideo').style.display='none';
}