function FlashTransparent(Url,height,width,nom)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + width + '" height="' + height + '" id="' + nom + '" align="middle">');
	document.write('<param name=\'movie\' value=\'' + Url + '\' />');
        document.write('<param name=\'quality\' value=\'high\' />');
        document.write('<param name=\'wmode\' value=\'transparent\' />');
	document.write('<embed src=\'' + Url + '\' wmode=\'transparent\' quality=\'high\' width=\'' + width + '\' height=\'' + height + '\' name=\'' + nom + '\' align=\'middle\' allowScriptAccess=\'sameDomain\' type=\'application/x-shockwave-flash\' pluginspage=\'http://www.macromedia.com/go/getflashplayer\' /></object>');
}
function FlashFond(Url,height,width,nom,bgcolor)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + width + '" height="' + height + '" id="' + nom + '" align="middle">');
	document.write('<param name=\'movie\' value=\'' + Url + '\' />');
        document.write('<param name=\'quality\' value=\'high\' />');
        document.write('<param name=\'bgcolor\' value=\'' + bgcolor + '\' />');
	document.write('<embed src=\'' + Url + '\' bgcolor=\'' + bgcolor + '\' quality=\'high\' width=\'' + width + '\' height=\'' + height + '\' name=\'' + nom + '\' align=\'middle\' allowScriptAccess=\'sameDomain\' type=\'application/x-shockwave-flash\' pluginspage=\'http://www.macromedia.com/go/getflashplayer\' /></object>');
}

function Start()
{
setInterval("ChangeOpacite();",100);
}
function ChangeOpacite()
{
var Lowan = parseFloat(document.getElementById("Lolo").style.opacity) + 0.025;
if(Lowan > 0.7) return;
document.getElementById("Lolo").style.opacity = Lowan ;
var Lowan2 = parseFloat(document.getElementById("Lolo").filters.alpha.opacity) + 5;
if(Lowan2 > 70) return;
document.getElementById("Lolo").filters.alpha.opacity=Lowan2;
}
function PopupCentrer(page,largeur,hauteur,options) {
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}