//define
var GAUCHE = 1;
var DROITE = 2;

/* OUVERTURE DE POPUP */
var fVideoOpened = 0;
function P(url,h,w) 
{
	if(fVideoOpened){
		fVideoOpened.close();}
		
	var X = (screen.availWidth-w)/3.5;
	var Y = (screen.availHeight-h)/3.5;
	var p = "height=" + h + ",width=" + w + ",scrollbars=no" + ",screenX=" + X + ",screenY=" + Y;
	fVideoOpened = window.open(url,"",p);

}