
/* highlight image call */
function HighlightCell (obj) {
	obj.style.backgroundColor='#E1E0E0';
}

function UnHighlightCell (obj) {
	obj.style.backgroundColor='#FFFFFF';
}
