﻿function showhidedetails(divid,imgid) {
   /*set the image and alt text*/
   
   //TODO: Remove the website prior to publishing
   //var removeme = ""
   
   var style=document.getElementById(divid).className
   if (style=="showbox")
   {
        document.getElementById(imgid).src="/images/button-expand.gif";
        document.getElementById(imgid).alt="View Section";
        

        document.getElementById(divid).className="hidebox";
   }
    else
    {
        document.getElementById(imgid).src="/images/button-collapse.gif";
        document.getElementById(imgid).alt="Close Section";
        
        document.getElementById(divid).className="showbox";
    }   

}


