function mOvr(src,clrOver){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 		 
		if( typeof src.oldBgColor == "undefined")
			src.oldBgColor = src.bgColor;
		src.bgColor = clrOver;
	} 
} 
function mOut(src){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		if( typeof src.oldBgColor != "undefined")
			src.bgColor =  src.oldBgColor;
		dispMsg("");
	} 
} 
function mClk(src){ 
	if(event.srcElement.tagName=='TD'){
		var ancor = firstChildren(src);
		if(ancor != null)
			ancor.click();
	}
		//src.children.tags('A')[0].click();
}
function dispMsg(message){
	window.status = message
}

function firstChildren(src){
	var found = null;
	if(typeof src.children != "undefined" && src.children.length > 0){
		for(var i=0; i < src.children.length && found == null; i++){
			if(	src.children[i].tagName == "A" )
				found = src.children[i];
			else
				found = firstChildren(src.children[i]);
		}
	}
	return found;
}
