function MenuOn(indexer)
{
	var arrow = document.getElementById("arrow_" + indexer);
	var txtCell = document.getElementById("txtCell_" + indexer);
	if (arrow && txtCell)
	{
		arrow.src = "img/arrow.on.gif";
		txtCell.style.background = "#f6ebbe";
	}
}

function MenuOff(indexer)
{
	var arrow = document.getElementById("arrow_" + indexer);
	var txtCell = document.getElementById("txtCell_" + indexer);
	if (arrow && txtCell)
	{
		arrow.src = "img/arrow.off.gif";
		txtCell.style.background = "#f5f4ef";
	}
}

function MenuCellOn(cellId)
{
	if (cellId)
	{
		cellId.style.background = "#f5f4ef";
	}
}

function MenuCellOff(cellId)
{
	if (cellId)
	{
		cellId.style.background = "#ffffff";
	}
}

function GetURL(webUrl)
{
	document.location = webUrl;
}
document.write('');