// It is used in displaying the menu
function ChangeNavBar(tableCell, Status)
{
	if (Status == "1")
		tableCell.style.backgroundColor = '#F76623';
	else
		tableCell.style.backgroundColor = '#AD4112';
}
