// JavaScript Document

currentBoxID = "dynContent1";


function displayBlock(id)
{	
	// cancel close timer
	// mcancelclosetime();

	// close old layer
	// if (ddmenuitem != 0)  ddmenuitem.style.visibility  = 'hidden';

	// get new layer and show it
	// ddmenuitem = document.getElementById(id);
	// ddmenuitem.style.visibility = 'visible';
	
	divBox = document.getElementById(id);
	currentBox = document.getElementById(currentBoxID);
	currentBox.style.display = 'none';
	divBox.style.display = 'block';
	currentBoxID = id;
}


