// scripts for 
// NO DECAFF ****************************************************

// alert('NOTE: no_decaff.js loaded');

// mouse over effects for cells in a table
function Cell_mOvr(srcobj,clrOver) {
// *** 'if' not working with Mozilla
//	if (!src.contains(event.fromElement)) 
//		{	
			srcobj.style.cursor = 'hand';
			//src.style.fontWeight = 'bold';
			srcobj.style.background = clrOver;
//		}
}

function Cell_mOut(srcobj,clrIn) {
// *** 'if' not working with Mozilla
//	if (!src.contains(event.toElement)) 
//		{	
			srcobj.style.cursor = 'default';
			srcobj.style.fontWeight = 'normal';
			srcobj.style.background = clrIn;
//		}
}
