// JavaScript Document

function toggleblocks (postid) { 
var whichpost = document.getElementById(postid); 
if (whichpost.className=="expandblock") { 
whichpost.className="collapseblock"; 
} 
else { 
whichpost.className="expandblock"; 
} 
} 