function tdfix() {
	var x=document.getElementsByTagName("td");
	var n=x.length;
	for(var i=0;i<n;i++){
		var y=x[i].firstChild;
		if (y!=null){
			if (y.nodeName=='A'){
			x[i].onclick=jump;
			x[i].style.cursor="pointer";
			}
		}	
	}

}

function jump(){
	location.assign(this.firstChild.href);
}

tdfix();

