var TM1 = 0 ;
var TM2 = 0 ;

function ShowCell (TDName, color, index, bShow) {

	return ;
	var TD = window.document.getElementById(TDName) ;

	var Y = index ;
	var bRestart = false ;

	if (bShow) {
		Y = index+10 ;
		bRestart = (Y<100) ;
	}
	else {
		Y = index-10 ;
		bRestart = (Y>10) ;
	}

	var sURL = 'url(/images/bg_3x1_' + Y + '.png)' ;

	//var sClip = 'rect(0 100% ' + Y +'% 0)' ;
	//window.document.getElementById('tdTest').style.clip = sClip ;

	TD.style.backgroundImage = sURL ;
	//TD.style.backgroundColor = 'red' ;

	window.status = sURL ;

	if (bRestart) {
		var CommandLine = 'ShowCell(\'' + TDName + '\', \'' + color + '\', ' + Y + ', ' + bShow +')' ;
		window.setTimeout(CommandLine, 250) ;
	}
//	else {
//		TD.style.Clip = 'rect(0,' + TD.width + ',0,' + TD.height +')' ;
//		TD.style.backgroundColor = '' ;
//	}

}