// JavaScript Document

var hop=null;

function zoomImage(obj,UrlPopup)
{
var objZoom=document.getElementById('ImageZoom');
objZoom.src=obj.href;
objZoom.alt=obj.title;
if (UrlPopup.length>0)
	{
	objZoom.urlZoom=UrlPopup;
	objZoom.wZoom=obj.wZoom;
	objZoom.hZoom=obj.hZoom;
	objZoom.style.cursor='pointer';
	objZoom.parentNode.href=UrlPopup;
	}
else	objZoom.style.cursor='default';

document.getElementById('ImageLegende').innerHTML=obj.title;
}

function popupImage(url,l,h)
{
if (url.length>0)
	{
	if (hop)	hop.close();
	hop=window.open(url, 'hop', 'width='+l+',height='+h+' ');
	hop.focus();
	}
}

function displayMenuFlash(FlashVars)
{
FlashVars=FlashVars.replace(';','&');

html='<object data="/MenuPage.swf" type="application/x-shockwave-flash" width="950" height="125" id="Menu" wmode="transparent" title="Arts des mati&egrave;res" bgcolor="#000000">';
html=html+'<param name="movie" value="/MenuPage.swf" />';
html=html+'<param name="menu" value="false" />';
html=html+'<param name="quality" value="high" />';
if (FlashVars.length>0)
	{
	//alert(FlashVars);
	html=html+'<param name="flashvars" value="'+FlashVars+'" />';
	}
html=html+'Arts des mati&egrave;res';
html=html+'</object>';
document.write(html);
}

function displayMenuFlashAccueil()
{
html='<object data="/MenuHome.swf" type="application/x-shockwave-flash" width="950" height="470" id="Menu" wmode="transparent" title="Arts des mati&egrave;res" bgcolor="#000000">';
html=html+'<param name="movie" value="/MenuHome.swf" />';
html=html+'<param name="menu" value="false" />';
html=html+'<param name="quality" value="high" />';
html=html+'Arts des mati&egrave;res';
html=html+'</object>';
document.write(html);
}

function displayTitreFlash(Titre)
{
html='<object data="/TitreFlash.swf" type="application/x-shockwave-flash" width="450" height="80" id="Menu" wmode="transparent" title="Arts des mati&egrave;res" bgcolor="#000000">';
html=html+'<param name="movie" value="/TitreFlash.swf" />';
html=html+'<param name="menu" value="false" />';
html=html+'<param name="wmode" value="transparent" />';
html=html+'<param name="quality" value="high" />';
if (Titre.length>0)
	{
	//alert(FlashVars);
	html=html+'<param name="flashvars" value="Titre='+Titre+'" />';
	}
html=html+'Arts des mati&egrave;res';
html=html+'</object>';
document.write(html);
}
