 /*	function affiche(id) {
	if (document.getElementById) {
	document.getElementById(id).style.visibility="visible";
	} else if (document.all) {
	document.all[id].style.visibility="visible";
	} else if (document.layers) {
	document.layers[id].visibility="visible";
	} }
	function efface(id) {
	if (document.getElementById) {
	document.getElementById(id).style.visibility="hidden";
	} else if (document.all) {
	document.all[id].style.visibility="hidden";
	} else if (document.layers) {
	document.layers[id].visibility="hidden";
	} }
*/

function affiche(id) 
	{ if (document.getElementById) { 
		document.getElementById(id).style.visibility="visible"; 
	} else if (document.all) { 
		document.all[id].style.visibility="visible"; 
	} else if (document.layers) { 
		document.layers[id].visibility="visible"; 
	}
}
function efface(id) { 
	if (document.getElementById) { 
		document.getElementById(id).style.visibility="hidden"; 
	} else if (document.all) { 
		document.all[id].style.visibility="hidden"; 
	} else if (document.layers) { 
		document.layers[id].visibility="hidden"; 
	} 
}

function popup(photo, titre, largeur, hauteur) { // Ateliers CYM - Paris
	var contenu="<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"><html><head><title>" + titre + "</title><style type=\"text/css\"> body {margin:0 ; padding:0; font:normal 9pt Verdana, Arial, Helvetica, sans-serif'; color:white} img, a {border:none} #cadre {position:absolute; left:12px; top:12px; z-index: 1; visibility:hidden} #nota {position:absolute; top:0; right:0; background:white; color:black; font:bold; width:70px; height:18px}</style></head><body><div id=\"cadre\"><a href=\"javascript:self.close()\"><img src=\"" + photo + "\" width=\"" + largeur/2 + "\"/></a><div id=\"nota\">Cliquez sur l\'image pour fermer.</div></div></body></html>";

	var fenetre = open("", titre, "resizable=no, width=" + largeur + ", height=" + hauteur + "");
   
	fenetre.document.write(contenu);
}

