function toggle( theId )
{
	if( document.getElementById( theId ).style.display == "block" )
		document.getElementById( theId ).style.display = "none";
	else
		document.getElementById( theId ).style.display = "block";
}