function arthrtxt()

{

	var obj = document.getElementById('arthrm');

	if (obj.style.display == 'block')

	{

		obj.style.display = 'none';

	}

	else

	{

		obj.style.display = 'block';

	}

}
