function mOvr(hede,src,clrOver){ 
	if (!hede.contains(event.fromElement)){ 
		hede.style.cursor = 'hand'; 
		src.bgColor = clrOver; 
	} 
} 
function mOut(hede,src,clrIn){ 
	if (!hede.contains(event.toElement)){ 
		hede.style.cursor = 'hand'; 
		src.bgColor = clrIn; 
	} 
} 
function mClk(src){ 
	if(event.srcElement.tagName=='TD')
		src.children.tags('A')[0].click();
}