// Popup window routine

function showfog()
{
	window.open("fog.htm","Information","toolbar=0,scrollbars=0,scrollable=0,menubars=0,status=0,location=0,width=370,height=500,left=120,top=120") ;
}

//Show or Hide sectional text

function ShowSection0()
{
	if (Section0.style.display == "none")
	{
		Section0.style.display = "inline";
		section0txt.innerHTML = "less...";
	}
	else
	{
		Section0.style.display = "none";
		section0txt.innerHTML = "more...";
	}
}

function ShowSection1()
{
	if (Section1.style.display == "none")
	{
		Section1.style.display = "inline";
		section1txt.innerHTML = "less...";
	}
	else
	{
		Section1.style.display = "none";
		section1txt.innerHTML = "more...";
	}
}

function ShowSection2()
{
	if (Section2.style.display == "none")
	{
		Section2.style.display = "inline";
		section2txt.innerHTML = "less...";
	}
	else
	{
		Section2.style.display = "none";
		section2txt.innerHTML = "more...";
	}
}

function ShowSection3()
{
	if (Section3.style.display == "none")
	{
		Section3.style.display = "inline";
		section3txt.innerHTML = "less...";
	}
	else
	{
		Section3.style.display = "none";
		section3txt.innerHTML = "more...";
	}
}

function ShowSection4()
{
	if (Section4.style.display == "none")
	{
		Section4.style.display = "inline";
		section4txt.innerHTML = "less...";
	}
	else
	{
		Section4.style.display = "none";
		section4txt.innerHTML = "more...";
	}
}

function ShowSection5()
{
	if (Section5.style.display == "none")
	{
		Section5.style.display = "inline";
		section5txt.innerHTML = "less...";
	}
	else
	{
		Section5.style.display = "none";
		section5txt.innerHTML = "more...";
	}
}

function ShowSection6()
{
	if (Section6.style.display == "none")
	{
		Section6.style.display = "inline";
		section6txt.innerHTML = "less...";
	}
	else
	{
		Section6.style.display = "none";
		section6txt.innerHTML = "more...";
	}
}

function ShowSection7()
{
	if (Section7.style.display == "none")
	{
		Section7.style.display = "inline";
		section7txt.innerHTML = "less...";
	}
	else
	{
		Section7.style.display = "none";
		section7txt.innerHTML = "more...";
	}
}

function ShowSection8()
{
	if (Section8.style.display == "none")
	{
		Section8.style.display = "inline";
		section8txt.innerHTML = "less...";
	}
	else
	{
		Section8.style.display = "none";
		section8txt.innerHTML = "more...";
	}
}

function ShowSection9()
{
	if (Section9.style.display == "none")
	{
		Section9.style.display = "inline";
		section9txt.innerHTML = "less...";
	}
	else
	{
		Section9.style.display = "none";
		section9txt.innerHTML = "more...";
	}
}

//Capture and prevent right click

var message="Copywrite © 2008 Trugga";

function clickIE4(){
	if (event.button==2){
		alert(message);
		return false;
	}
}

function clickNS4(e){
	if (document.layers||document.getElementById&&!document.all){
		if (e.which==2||e.which==3){
			alert(message);
			return false;
		}
	}
}

if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS4;
}
	else if (document.all&&!document.getElementById){
	document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")
