function highlightCell(objCell, zpState)
{
	var obj = document.getElementById(objCell.id);
	
	if (obj.getAttribute("selected") != "true")
	{
		if (zpState == "on")
		{	
			objCell.style.backgroundColor = "#FFFFCC";
			objCell.style.color = "#000000";
		}	
		else
		{
			objCell.style.backgroundColor = "#0000A0";
			objCell.style.color = "#FFFFFF";
		}
	}
}

function navigateTo(pageName)
{
	window.top.document.location = pageName
}