function TD_on(what) {
	what.style.background = "#990000";
	what.style.cursor = "hand";
	what.style.cursor = "pointer";
}
function TD_out(what) {
	what.style.background = "#FF6666";
}
function TD_click(what) {
	document.location.href = what;
}
