ie4 = (document.all)? true:false
function activate(obj) {
//	activebgcolor = "aliceblue"
	activebgcolor = "#EFEFEF"
	if (ie4) {
		obj.style.backgroundColor=activebgcolor
//		obj.style.borderColor="navy"
	}
}

function deactivate(obj) {
	if (ie4) {
		var el=window.event.srcElement
		if (el.className=="rTextBox") {
			obj.style.backgroundColor=""
//			obj.style.borderColor=""
		}
		else {
			obj.style.backgroundColor=""
//			obj.style.borderColor=""
		}
	}
}
