function SwitchTopColorOn(obj)
{
	obj.style.backgroundColor = "#CCCCCC";
	return false;
}

function SwitchTopColorOff(obj)
{
	obj.style.backgroundColor = "#DDDDDD";
	return false;
}
