function cellOvr(src,bcolor) { if (!src.contains(event.fromElement)) { 
		src.children.tags('A')[0].style.color='#ffffcc';
		src.style.cursor = 'hand';
		src.bgColor = bcolor; 
	}
}
function cellOut(src,color) { if (!src.contains(event.toElement))   { 
		src.children.tags('A')[0].style.color='#ffffff';
		src.style.cursor = 'default';
		src.bgColor = color; 
}}
function cellClk(src) {
	if(event.srcElement.tagName=='TD') {
		src.children.tags('A')[0].click();
	}
}
