<!-- DIV Toggle -->
function toggle (id) { 
   var whichpost = document.getElementById(id); 
   if (whichpost.className=="shown") { 
      whichpost.className="hidden"; 
   } 
   else { 
      whichpost.className="shown"; 
   } 
} 