ie=false;
ns=false;
if(navigator.appName=="Netscape")
{
ns=true;
}

if(navigator.appName=="Microsoft Internet Explorer")
{
ie=true;
}

function hilite(lnk)
{
if(ie)
{
document.all[lnk].style.background='#696044';
}
if (ns){
	lity=document.getElementById(lnk);
	lity.style.background="#696044";
	}
}
function nolite(lnk)
{
if(ie)
{
document.all[lnk].style.background='#333384';
}
if (ns){
	nolity=document.getElementById(lnk);
	nolity.style.background="#333384";
	}
}

function ref(lnk)
	{
	if (ns)
	{
	window.location=lnk;
	}
	if (ie)
	{window.location.href=lnk;}
	}