function redimFlash(args){
		//pour les navigateurs qui ne connaissent pas getElementById() :
	if (!document.getElementById) {
		if (document.all)
			document.getElementById=function() {
			if ( typeof(document.all[arguments[0]]) != "undefined")
				return document.all[arguments[0]];
			else
				return null;
			}
		else if (document.layers)
			document.getElementById=function() {
				if ( typeof(document[arguments[0]]) != "undefined")
					return document[arguments[0]];
				else
					return null;
		}
	}
	
	document.getElementById("flashInterface").style.height=args;	
}

function popup(page,largeur,hauteur,options) {
  var op=(screen.height-hauteur)/2;
  var eft=(screen.width-largeur)/2;
  window.open(page,"","top="+op+",left="+eft+",width="+largeur+",height="+hauteur+",scrollbars=yes ,"+options);
}

function fullScreen(theURL) {
	window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
}


