////////////////////////////////////////////////////////////////////////////////
//
// Miscellaneous set of javascript tools authored by derrin@htdc.org
//
////////////////////////////////////////////////////////////////////////////////

// Toggle the client descriptions on and off.
function toggle_div( id )
  {
  	// Attempt to get the div object we need to toggle
	if( obj = document.getElementById( id ) )
	  {
	  	if( obj.style.display == 'none' ) { obj.style.display = ''; }
		else { obj.style.display = 'none'; }
	  }
  }
