// JavaScript Document
function AboutMSDB()
{
	var obj = document.getElementById('aboutpara');

	if (obj.style.display == 'block')
	{
		obj.style.display = 'none';
	}
	else
	{
		obj.style.display = 'block';
	}
}

function Information()
{
	var obj = document.getElementById('aboutparainfo');

	if (obj.style.display == 'block')
	{
		obj.style.display = 'none';
	}
	else
	{
		obj.style.display = 'block';
	}
}