// JavaScript Document
	function changeDiv( showID )

	{	

		var div = document.getElementById ? document.getElementById( showID ):document.all( showID );

		if( div != null )

		{

			if( div.style.visibility != "visible" )

			{

				div.style.visibility = "visible";

				div.style.display = "";	

				div = document.getElementById ? document.getElementById( showID + "a" ):document.all( showID + "a" )	;


			}

			else

			{

				div.style.visibility = "hidden";

				div.style.display = "none";

				div = document.getElementById ? document.getElementById( showID + "a" ):document.all( showID + "a" )	;


			}

		}

	}

