function tHL1( obj, ON )
{
	if( document.getElementById )
		{
			var button = document.getElementById( obj );
				if( ON )
					{
						button.style.backgroundColor = "#005297";
					}
				else
					{
					button.style.backgroundColor = "#0060b1";
					}
		}
}
