

	function getElt(eltId) {
	var elt;
	if (document.getElementById)
		elt = document.getElementById(eltId);
	if (!elt && document.all)
		elt = document.all(eltId);
	return elt;
}

function hideshow(lediv){ 

var tb = getElt(lediv) ;
 
var dis = tb.style.display; 
tb.style.display=(tb.style.display=='none')?'':'none'; 


img = "image-" + lediv;

imgElement = getElt(img);
imgElement.src=(imgElement.src=='http://www.adakor.fr/images/main/puce-off.png')?"http://www.adakor.fr/images/main/puce-on.png":'http://www.adakor.fr/images/main/puce-off.png';

}
