//============================================
//(c)2000-2003 upmedia.com
//============================================
function resetCellBg(){
//	tcell_1.style.backgroundColor = '#ffffff';
//
//	if (document.getElementById) {
//		colorCellBg(document.getElementById( 'tcell_2' ),'#4455ff');
//	}//endIF
}//endFCT
function colorCellBg(_id, _myColor){
	if(_id!=null)
		if (document.getElementById)
			_id.style.backgroundColor = _myColor;
}//endFCT
function toggle(_ID){

	var block = null;
	if(document.getElementById)
		block=document.getElementById(_ID);

	if(block){
		if(block.style.display == 'block')
			block.style.display = 'none';
		else
			block.style.display = 'block';
	}//endIF
}//endFCT
