// SHOW OR HIDE DIV LAYER

function Hide(boxid) 
{
	document.getElementById(boxid).style.display = "none";
}

function Show(boxid) 
{
	document.getElementById(boxid).style.display = "block";
}

function Display(BoxID) 
{
	status = document.getElementById(BoxID).style.display;
			
	if (status == "none")
	{
		Show(BoxID);
	}
	else
	{
		Hide(BoxID);
	}
}