// JavaScript Document

function displayFlashMenu(ident,nomflash,titre,width,height)
{
html='<object  data="'+nomflash+'" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" id="Menu" title="'+titre+'">';
html=html+'<param name="movie" value="'+nomflash+'" />';
html=html+'<param name="'+ident+'" value="false" />';
html=html+'<param name="quality" value="high" />';
html=html+'<param name="bgcolor" value="#000000" />';
html=html+''+titre+'';
html=html+'</object>';
document.write(html);
}

function RollOverImage(id,image)
{
	var obj=document.getElementById(id);
	obj.src='images/' + image + '_over.gif';
}

function RollOutImage(id,image)
{
	var obj=document.getElementById(id);
	obj.src='images/' + image + '.gif';
}