function ToggleNavColor(o, color, isMouseOver) {
	if (document.all) {	
		//if (!o.contains(event.fromElement)) {
			if (isMouseOver) 
				o.style.cursor = 'hand';
			else
				o.style.cursor = 'default';
		//}
		
		o.bgColor = color;
	}
}

function ToggleNavClass(o, className, isMouseOver) {	
	if (document.all) {
		//if (!o.contains(event.fromElement)) {
			if (isMouseOver) 
				o.style.cursor = 'hand';
			else
				o.style.cursor = 'default';
		//}
		
		o.className = className;
	}
}

function NavCellClick(o) {
	if (document.all) {
		//if (event.srcElement.tagName == 'TD')
			o.children.tags('A')[0].click();
	}
}