function tdovr(src, color, an) {
src.style.cursor = 'hand';
src.style.backgroundColor = color;
document.getElementById(an).style.color = '#BC0000';
}

function tdout(src, color, an) {
src.style.cursor = 'default';
src.style.backgroundColor = color;
document.getElementById(an).style.color = '#8E8E99';
}

function mClk(an) {
	document.getElementById(an).click();
}

