function montreMenu(element) {
	
	
	var enfant = element.childNodes;
		
	
	
	if(enfant[1].className=='visible') {
		enfant[1].className='cache';
		element.className='titre_ferme';
	}
	else {			
		enfant[1].className='visible';
		element.className='titre_ouvert';
	}
	
}



function openPopImg(picName,titre, windowWidth, windowHeight){	
	w=open("",titre,'width=1,height=1,toolbar=no,scrollbars=no,resizable=no'); 
	w.document.write("<script type='text/javascript'>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width,document.images[0].height); window.focus();} else { settimeout('checksize()',250) } }</"+"script>"); 
	w.document.write("<body onload='checksize()' onblur='window.close()' style='cursor:pointer' onclick='window.close()' topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>"); 
	w.document.write("<img src='"+picName+"' border='0' alt='"+titre+"' /></body>"); 
	w.document.close(); 
}
