// JavaScript Document
function Information()
{
	var obj = document.getElementById('aboutparainfo');

	if (obj.style.display == 'block')
	{
		obj.style.display = 'none';
	}
	else
	{
		obj.style.display = 'block';
	}
}

function InformationTwo()
{
	var obj = document.getElementById('aboutparainfotwo');

	if (obj.style.display == 'block')
	{
		obj.style.display = 'none';
	}
	else
	{
		obj.style.display = 'block';
	}
}


function popout(show,hide) {
document.getElementById(show).style.display='block';
document.getElementById(hide).style.display='none';
}

