// JavaScript Document

// For a basic toggle div
  function toggleDiv(divid){
    if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
    }else{
      document.getElementById(divid).style.display = 'none';
    }

  }


//For the expand/collapse feature
	function showhide( what )
{
if ( what.length == null ) what = new Array(what);
for ( var w = 0; w < what.length; ++w )
{
var div = document.getElementById(what[w]);
div.style.display = ( div.style.display == "none" ) ? "" : "none";
}
}
