function Imprimable() {
	with (document.getElementsByTagName("TABLE")(0).rows(0).cells(0).style) {
		if (display == "none")
			display = "";
		else
			display = "none";
	}
}

function SwitchBG(cId, lVisible) {
	var oBG = document.all(cId);
	var oCol = oBG.children;
	var nI
	
	if (lVisible) {
		if (oBG.className == "BARRE-GAUCHE-REDUITE") {
			for (nI = 0; nI < oCol.length; nI++)
				with (oCol[nI]) {
					oCol[nI].className = getAttribute("oldClassName");
					removeAttribute("oldClassName")
				}
			
			oBG.className = "BARRE-GAUCHE";
		}
	}
	else {
		if (oBG.className == "BARRE-GAUCHE") {
		    var lOK = true;
		    
		    if (event)
		        lOK = (event.srcElement.id.substr(0, 6) != "oME_MA");
		    
    	    if (lOK) {
			    for (nI = 0; nI < oCol.length; nI++)
				    with (oCol[nI]) {
					    setAttribute("oldClassName",className)
					    oCol[nI].className = "CACHE";
				    }
    			
			    oBG.className = "BARRE-GAUCHE-REDUITE";
			}
		}
	}
}
