function mOvr(src) {
	if (!src.contains(event.fromElement)) {
		src.style.cursor = "hand";
		src.children.tags("A")[0].style.color = "#F7C402";
		src.children.tags("A")[0].style.fontWeight = "normal";
	}
} 

function mOut(src) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = "default";
		src.children.tags("A")[0].style.color = "#000000";
		src.children.tags("A")[0].style.fontWeight = "normal";
	}
}

function mOvr2(src) {
	if (!src.contains(event.fromElement)) {
		src.style.cursor = "hand";
	}
} 

function mOut2(src) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = "default";
	}
}

function mClk(src) {
	if(event.srcElement.tagName=="TD") {
		src.children.tags("A")[0].click();
	}
}
