if(document.layers)
{
	top.location.href = "/rbl/rbl/ua_disclaimer.html";
}

var sLS;

function PNMouseOver(obj)
{
	if(obj.href.indexOf("P" + sLS) != -1) return;
	obj.style.color='#F9F9E7';
}

function PNMouseOut(obj){
	if(obj.href.indexOf("P" + sLS) != -1) return;
	obj.style.color='#818F83';
}
function SNMouseOver(obj){
	if(obj.href.indexOf("P" + sLS) != -1) return;
	obj.style.color='#F9F9E7';
}
function SNMouseOut(obj){
	if(obj.href.indexOf("P" + sLS) != -1) return;
	obj.style.color='#CDD5C7';
}

function setLocalState()
{
	sHref = document.location.href;
	sLS	  = sHref.substring(sHref.lastIndexOf("/")+2, sHref.lastIndexOf("."));

	if(sLS.length == 1)
	{
		document.getElementById('PN' + sLS).className += "-on";
	} 
	else if(sLS.length == 2)
	{
		document.getElementById('PN' + sLS.charAt(0)).className += "-on";

		if(sLS.charAt(1) == "0")
		{
			return;
		}
		else
		{
			document.getElementById('SN' + sLS).className += "-on";
		}
	}
}


function Main()
{
	setLocalState();
}


