// JavaScript Document

function expandcollapse (linkid) { 

   whichpost = document.getElementById(linkid); 
   
   if (whichpost.className=="linkshown") { 
      whichpost.className="linkhidden"; 
   } 
   else { 
      whichpost.className="linkshown"; 
   } 
} ;