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

