// JavaScript Document
function mOver(tdval) {
	tdval.style.backgroundColor = "#191919" ;	
	tdval.style.cursor = "pointer";	
}
function mOut(tdval) {
	tdval.style.backgroundColor = "";
	tdval.style.cursor = "";
}
function gotoURL(url){
	location.href=url;
}
