if (document.location!=top.location)	top.location=document.location;

function RollOverImage(obj)
{
obj.src=obj.src.replace('.png','-RO.png');
}

function RollOutImage(obj)
{
obj.src=obj.src.replace('-RO.png','.png');
}

function popup(url,nom,w,h)
{
fen=open(url,nom,'width='+w+',height='+h+',toolbar=no,location=no,status=no,menubar=no,scrollbar=auto,resizable=no');
fen.focus();
}

function addFav()
{ 
if (document.all)	window.external.AddFavorite(location.href, document.title); 
else 				alert('Vous pouvez faire CTRL + D pour ajouter cette page dans vos signets, ou favoris.');
}

function RollOverBouton(obj)
{
TexteOutil.innerHTML=obj.alt;
RollOverImage(obj);
}

function RollOutBouton(obj)
{
TexteOutil.innerHTML='&nbsp;';
RollOutImage(obj);
}

function displayMenu(idDossier)
{
html='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="738" height="255">';
html=html+'<param name="allowScriptAccess" value="sameDomain" />';
html=html+'<param name="movie" value="/CoquilleMenu.swf?idDossier='+idDossier+'" />';
html=html+'<param name="menu" value="false" />';
html=html+'<param name="quality" value="high" />';
html=html+'<embed src="/CoquilleMenu.swf?idDossier='+idDossier+'" menu="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="738" height="255"></embed>';
html=html+'</object>';

document.write(html);
}

function displayAnim(fichier,l,h)
{
html='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+l+'" height="'+h+'">';
html=html+'<param name="movie" value="'+fichier+'">';
html=html+'<param name="menu" value="false">';
html=html+'<param name="quality" value="high"><param name="BGCOLOR" value="#F7F7F7">';
html=html+'<embed src="'+fichier+'" width="'+l+'" height="'+h+'" menu="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" bgcolor="#F7F7F7"></embed>';
html=html+'</object>';

document.write(html);
}