// JavaScript Document


FuncOL = new Array();
function StkFunc(Obj) {
     FuncOL[FuncOL.length] = Obj;
}
     
 window.onload = function() {
      for(i=0; i<FuncOL.length; i++)
           {FuncOL[i]();}
}

function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}

StkFunc(montre);

function clicdroit()
	{
	alert(''+String.fromCharCode(169)+' Dado, ADAGP.\n\nTous droits de l'+String.fromCharCode(8217)+'auteur des '+String.fromCharCode(339)+'uvres r'+String.fromCharCode(233)+'serv'+String.fromCharCode(233)+'s. Sauf autorisation '+String.fromCharCode(233)+'crite, la reproduction ainsi que toute utilisation des '+String.fromCharCode(339)+'uvres autre que la consultation individuelle et priv'+String.fromCharCode(233)+'e sont interdites.\n\nReproduction including downloading of the works exhibited on this site are prohibited by copyright laws and international conventions without the express written permission of the copyright holders.');
	return(false);
	}


function clicdroit2(){
var imgs = document.getElementsByTagName("img");
for(var k=0; k<imgs.length; k++)
     imgs[k].oncontextmenu = clicdroit;
}

StkFunc(clicdroit2);

function clicdroit3(){
var imgsid = new Array("showcase","showcase2");
for(var k=0; k<imgsid.length; k++)
     document.getElementById(imgsid[k]).oncontextmenu = clicdroit;
}

StkFunc(clicdroit3);







