// JavaScript Document
	function toggleblocks (postid,arrowid) { 
	var whichpost = document.getElementById(postid); 
	var whicharrow = document.getElementById(arrowid); 
	if (whichpost.className=="expand") { 
	whichpost.className="collapse";
	whicharrow.src="/images/arrw33b8.gif";
	 } else { 
	whichpost.className="expand"; 
	whicharrow.src="/images/arrwgrey8dn.gif"; }
	 } 

