// ActionScript Document
//effet de mouse hover
function trHover(obj,newcolor) { obj.oldColor=obj.bgColor; obj.bgColor=newcolor; }
function trOut(obj) { obj.bgColor=obj.oldColor; }

// Cacher Montrer les details Script
function tglCase(event,obj) { 
	try{child=document.getElementById(obj.getAttribute("child",false));child.className=child.className=="tabtrcollapsed" ? "" : "tabtrcollapsed";	}catch(e){}; 
}
function tglPic(obj) { 
	try{if(obj.src.lastIndexOf("plus.")!=-1){obj.src=obj.src.replace('plus.','moins.');}else{obj.src=obj.src.replace('moins.','plus.');}}catch(e){}; 
}
function tglRow(event,picname) { try{tglPic(document.getElementById(picname));tglCase(event,document.getElementById(picname));}catch(e){}; }
function tglStop(event) { try{event.cancelBubble=true;}catch(e){}; try{event.stopPropagation;}catch(e){}; }