function SubRollOverRow(oTd) {
	if (b == "ie") {
		if (!oTd.contains(window.event.fromElement)) {oTd.bgColor="#a9eea2";}
	}
	else {
		if (!oTd.style) {
          oTd.style={};
        }
		oTd.style["backgroundColor"]="#a9eea2";
	}
}
function SubRollOutRow(oTr, c) {
	if (b == "ie") {
		if (!oTr.contains(window.event.toElement)) {oTr.bgColor=c;}
	}
	else {
		if (!oTr.style) {
          oTr.style={};
        }
		oTr.style["backgroundColor"]=c;
	}
}

