function ShowSection(sectionID, heading)
{
	var section = document.getElementById("Section_" + sectionID);
	var sectionArrow = document.getElementById("SectionArrow_" + sectionID);
	
	if (section)
	{
		if (section.style.display == 'none')
		{
			section.style.display = 'block';
			sectionArrow.src = "images/arrow_down.gif";
			sectionArrow.width = 7;
			sectionArrow.height = 4;
		}
		else
		{
			section.style.display = 'none';			
			sectionArrow.src = "images/arrow_right_nav.gif";
			sectionArrow.width = 4;
			sectionArrow.height = 7;
		}
	}
}


//The following clicks a button (as defined by second argument) when CR is entered 
//into a text box.  The keypress event is passed as the first argument.
function clickButton(e, buttonid){ 
      var evt = e ? e : window.event;

      var bt = document.getElementById(buttonid);

      if (bt){ 
          if (evt.keyCode == 13){ 
                bt.click(); 
                return false; 
          } 
      } 
}
