// JavaScript Document

function showDiv(objectID)
	{
		var theElementStyle = document.getElementById(objectID);
		
		if(theElementStyle.style.display == "none")
			{theElementStyle.style.display = "inline";}
		else
			{theElementStyle.style.display = "none";}
	}

function toggleDisplay(me)
	{
		me.style.display = "none";
		showDiv('targetDiv');
	}


