// JavaScript Document
function favoris(phrase,lien){
   if (window.sidebar){
   window.sidebar.addPanel(phrase, lien, "");
   }else if( document.all ){
   window.external.AddFavorite(lien, phrase);
   }else{
   return true;
   }
} 

function masquer_cartouche(){
	document.getElementById('cartouche_collecte').className = "cache";
}
window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=25; i++) {
		if (document.getElementById('smenu'+i)) {
		document.getElementById('smenu'+i).style.display='none';
		}
	}
if (d) {d.style.display='block';}
}
<!--window.onload = montre;-->
function affiche(id) {
	if(id){
	document.getElementById("comment_"+id).className = "voir";
	}
}
function masquer(id) {
	if(id){
	document.getElementById("comment_"+id).className = "masquer";
	}
}