function hideDiv()
{
	if (document.getElementById)
	{ // DOM3 = IE5, NS6
		document.getElementById('informationbox').style.visibility = 'hidden';
	}
	else
	{
		if (document.layers)
		{ // Netscape 4
			document.informationbox.visibility = 'hidden';
		}
		else
		{ // IE 4
			document.all.informationbox.style.visibility = 'hidden';
		}
	}
}

function showDiv()
{
	hideDiv2();
	if (document.getElementById)
	{ // DOM3 = IE5, NS6
		document.getElementById('informationbox').style.visibility = 'visible';
		document.getElementById('informationbox').style.visibility = 'visible';
	}
	else
	{
		if (document.layers)
		{ // Netscape 4
//			document.informationbox.visibility = 'visible';
			document.informationbox.display = 'block';
		}
		else
		{ // IE 4
			document.all.informationbox.style.visibility = 'visible';
		}
	}
}

function hideDiv2()
{
	if (document.getElementById)
	{ // DOM3 = IE5, NS6
		document.getElementById('helpbox').style.visibility = 'hidden';
	}
	else
	{
		if (document.layers)
		{ // Netscape 4
			document.helpbox.visibility = 'hidden';
		}
		else
		{ // IE 4
			document.all.helpbox.style.visibility = 'hidden';
		}
	}
}

function showDiv2()
{
	hideDiv();
	if (document.getElementById)
	{ // DOM3 = IE5, NS6
		document.getElementById('helpbox').style.visibility = 'visible';
		document.getElementById('helpbox').style.visibility = 'visible';
	}
	else
	{
		if (document.layers)
		{ // Netscape 4
//			document.helpbox.visibility = 'visible';
			document.helpbox.display = 'block';
		}
		else
		{ // IE 4
			document.all.helpbox.style.visibility = 'visible';
		}
	}
}

function loadintro()
{
	showDiv();
	hideDiv2();
	winRef = window.open( "content/intro.htm", "theframe" )	
}

function loadinfo()
{
	hideDiv();
	hideDiv2();
	winRef = window.open( "content/questions.htm", "theframe" )	
}

function loadfollow()
{
	hideDiv();
	hideDiv2();
	winRef = window.open( "content/follow.htm", "theframe" )	
}

function loadhelp()
{
	hideDiv();
	showDiv2();
	winRef = window.open( "content/help.htm", "theframe" )	
}

function loaddonate()
{
	hideDiv();
	showDiv2();
	winRef = window.open( "content/donate.htm", "theframe" )	
}
