// JavaScript Used for Expand/Collapse
<!--
function toggleblocks (postid) {
var whichpost = document.getElementById(postid);
if (whichpost.className=="expandblock") {
whichpost.className="collapseblock";
}
else {
whichpost.className="expandblock";
}
}

var ie4 = false; if(document.all) { ie4 = true; }
function getObject(id) { if (ie4) { return document.all[id]; } else { return document.getElementById(id); } }
function toggle(link, divId) { var lText = link.innerHTML; var d = getObject(divId);
 if (lText == 'Expand +') { link.innerHTML = 'Collapse -'; d.style.display = 'block'; }
 else { link.innerHTML = 'Expand +'; d.style.display = 'none'; } }

//-->
