function Toggle(oItem, bOn)
{

	if (bOn)
		oItem.style.color = sOnColor;
	else
		oItem.style.color = sOffColor;
		
}
