defaultStatus= document.title;

function MOver(src,ChgColor){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.bgColor = ChgColor;
		
	} 
} 
function MOut(src,ChgColor){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = ChgColor;		
	} 
} 
function MClick(src){ 
	if(event.srcElement.tagName=='TD')
		src.children.tags('A')[0].click();
}


