window.onload=montre;

function montre(id) {
	var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('ssTable'+i)) {
			document.getElementById('ssTable'+i).style.display='none';
		}
	}//fin for
	if (d) {d.style.display='block';}
}
	
function afficheContenu(idRub){
	
	ed = document.getElementById('zoneC');
  	ed.setAttribute("src", "http://www.musee-dordives.com/affZoneCentrale.php?id="+idRub);
	//alert (idRub);
}



function ouvreFenetre(url, height, width){
	window.open(url, '', 'width=' + width + ', height=' + height);
}