function toggleBox(szDivID) // 1 visible, 0 hidden
{
	var theSpan = document.getElementById ? document.getElementById(szDivID) : document.all ? document.all[szDivID] : (new Object());
	if( !theSpan ) { return; } if( theSpan.style ) { theSpan = theSpan.style; }
	{
		theSpan.display = ( theSpan.display == 'none' ) ? 'inline' :  'none';
	}
}
