// Put an ID of "activemenu" on the parentNode of the span with the className "L1_Active"
function csFixDWActiveMenu() {
	var aSPANs, oSPAN, s=0;
	aSPANs = document.getElementsByTagName("span");
	while(oSPAN = aSPANs[s++]) {
		if (oSPAN.className == "L1_Active") {
			oSPAN.parentNode.setAttribute("id", "activemenu", 0);
			break;
		}
	}
}
// Put an ID of "activemenu" on the parentNode of the span with the className "L2_Active"
function csFixDWActiveMenu2() {
	var aSPANs, oSPAN, s=0;
	aSPANs = document.getElementsByTagName("span");
	while(oSPAN = aSPANs[s++]) {
		if (oSPAN.className == "L2_Active") {
			oSPAN.parentNode.setAttribute("id", "activemenu2", 0);
			break;
		}
	}
}
// Text version
function textversion () {
		for(i=0;i<document.styleSheets.length;i++){
			void(document.styleSheets.item(i).disabled=true);
		}
		el=document.getElementsByTagName('*');
		for(i=0;i<el.length;i++){
			void(el[i].style.cssText='');
		}
	}