function mOvr(src,clrOver)
{ if (!src.contains(event.fromElement)) { 
		src.style.cursor = 'hand';
		src.style.backgroundColor = clrOver;
		window.status = src.children.tags('a')[0];
	}
}

function mOut(src,clrOut)
{ if (!src.contains(event.toElement)) { 
		src.style.cursor = 'default';
		src.style.backgroundColor = clrOut;
		window.status = '';
	}
} 

function mClk(src)
{ if(event.srcElement.tagName=='TD') {src.children.tags('a')[0].click();}}
