function showhide (sectionid) { 

   section = document.getElementById(sectionid); 
   
   if (section.className=="show") { 
      section.className="hide"; 
   } 
   else { 
      section.className="show"; 
   } 
} 