function ouvrir (nom) {
	document.getElementById ('LightboxBG').style.display = 'block';
	document.getElementById ('LightboxContainer').style.display = 'block';
	document.getElementById ('Loader').style.visibility = 'visible';
	document.getElementById ('LightboxContent').innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="1024" height="513"><param name="movie" value="swf/' + nom.toString () + '.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><embed src="swf/' + nom.toString () + '.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="1024" height="513"></embed></object>';
	setTimeout ("document.getElementById ('Loader').style.visibility = 'hidden';", 30000);

}

function fermer () {
	document.getElementById ('LightboxContainer').style.display = 'none';
	document.getElementById ('LightboxBG').style.display = 'none';
}
