// JavaScript Document

//OUVRIR UNE PAGE HTML QUI CONTIENT UN QTVR

var popUpWinQTVR=0;
var w  =820;
var h = 500;

function ouvrirQTVR(URLStr) {
	
  if(popUpWinQTVR)
  {
    if(!popUpWinQTVR.closed)
	{
	popUpWinQTVR.close();
	popUpWinQTVR=0;
	}
  }
winl=(10); 
wint=15;
features="toolbar=no,location=no,directories=no,status=no,menubar=no, scrollbars=yes,resizable=yes,copyhistory=yes,width="+w+",height="+h+",left="+winl+",top="+wint;
popUpWinQTVR=window.open(URLStr,'QTVR',features);
}



// ouvrir une page HTML qui contient un SWF (jeu AF)
var popUpWinSwf=0;

function ouvrirSWF(URLStr,winName,w,h) {
 if(popUpWinSwf)
  {
    if(!popUpWinSwf.closed)
	{
	popUpWinSwf.close();
	popUpWinSwf=0;
	}
  }
winl=(screen.width-w-10); 
wint=20;
features="toolbar=no,location=no,directories=no,status=no,menubar=no, scrollbars=yes,resizable=yes,copyhistory=yes,width="+w+",height="+h+",left="+winl+",top="+wint;
popUpWinQTVR=window.open(URLStr,'QTVR',features);
}

