function NavLevel2Off()

{

	var name = navigator.appName;
	if (name =="Microsoft Internet Explorer")
		name = "IE";
	else
		name = "NS";

	var version = navigator.appVersion;
	version = version.substring(0,1); 

	if (name == "IE")
	{
		document.all.NavSection2.style.left = "-1000px";
		document.all.NavSection3.style.top = "68px";
		document.all.NavSection4.style.top = "155px";
		document.all.NavSection5.style.top = "350px";
		document.all.NavSectionListinus.style.top = "420px";
	
		return;
	}

	if (name = "NS")
	{
		document.getElementById("NavSection2").style.left = "-1000px";
		document.getElementById("NavSection3").style.top = "68px";
		document.getElementById("NavSection4").style.top = "155px";
		document.getElementById("NavSection5").style.top = "350px";
		document.getElementById("NavSectionListinus").style.top = "420px";
	
		return;
	}

}


function NavLevel2On()
{

	var name = navigator.appName;
	if (name =="Microsoft Internet Explorer")
		name = "IE";
	else
		name = "NS";

	var version = navigator.appVersion;
	version = version.substring(0,1); 


	if (name == "IE")
	{
		document.all.NavSection2.style.left = "0px";
		document.all.NavSection3.style.top = "248px";
		document.all.NavSection4.style.top = "335px";
		document.all.NavSection5.style.top = "530px";
		document.all.NavSectionListinus.style.top = "600px";
	
		return;
	}

	if (name = "NS")
	{
		document.getElementById("NavSection2").style.left = "0px";
		document.getElementById("NavSection3").style.top = "248px";
		document.getElementById("NavSection4").style.top = "335px";
		document.getElementById("NavSection5").style.top = "530px";
		document.getElementById("NavSectionListinus").style.top = "530px";
	
		return;
	}

}