
//Set up the Images
function showHideTable(theTable,theImg)
{
if (document.getElementById(theTable).style.display == 'none')
   {
   document.getElementById(theTable).style.display = 'block';
   document.getElementById(theImg).src='http://www.centrastate.com/assets/images/minus.gif';
   }
   else
   {
   document.getElementById(theTable).style.display = 'none';
   document.getElementById(theImg).src = 'http://www.centrastate.com/assets/images/plus.gif';
   }
}


//Set up the Images
function showHideHorizon(theTable,theImg)
{
if (document.getElementById(theTable).style.display == 'none')
   {
   document.getElementById(theTable).style.display = 'block';
   document.getElementById(theImg).src='http://www.capitalhealth.org/images/horizon_minus.gif';
   }
   else
   {
   document.getElementById(theTable).style.display = 'none';
   document.getElementById(theImg).src = 'http://www.capitalhealth.org/images/horizon_plus.gif';
   }
}