function navCellMouseOver(o, stat)
{
	o.style.textDecoration = "underline";
	o.style.color = "Blue";
	o.style.backgroundColor = "#cbe7ff";
	o.style.border = "solid 1px gray";
	o.style.cursor = "hand";
	window.status = stat;
	return true;
}
function navCellMouseOut(o)
{
	o.style.textDecoration = "none";
	o.style.color = "Black";
	o.style.backgroundColor = "";
	o.style.border = "solid 1px #e7f1ff";
	o.style.cursor = "default";
	window.status = "";
	return true;
}
function navCellClick(s)
{
	window.location.href = s;
}
function navLinkMouseOver(o, stat)
{
	o.firstChild.style.textDecoration = "underline";
	o.firstChild.style.color = "Blue";
	o.style.backgroundColor = "#cbe7ff";
	o.style.border = "solid 1px gray";
	o.style.cursor = "hand";
	window.status = stat;
	return true;
}
function navLinkMouseOut(o)
{
	o.firstChild.style.textDecoration = "none";
	o.firstChild.style.color = "Black";
	o.style.backgroundColor = "";
	o.style.border = "solid 1px #e7f1ff";
	o.style.cursor = "default";
	window.status = "";
	return true;
}
function navLinkClick(o)
{
	o.firstChild.click();
}
function linkClick(s)
{
	window.location.href = s;
}

