function btnOnMouseEnter( objID, sPath ){	
	objID.src = sPath;
}

function btnOnMouseLeave( objID, sPath ){
	objID.src = sPath;	
}

function tdOnMouseEnter( objID, nColor ){
	objID.bgColor = nColor;
}

function tdOnMouseLeave( objID, nColor ){
	objID.bgColor = nColor;
}