function OnMouseOverPageName(objCell)
{
	objCell.bgColor = '#C97373'
	objCell.style.cursor = "hand"
}

function OnMouseOutPageName(objCell)
{
	objCell.bgColor = ""
	objCell.style.cursor = ""
}

function OnClickPageName(objCell, strURL)
{
	location.href = strURL
}
