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

function newBlocks (dropid) 
{
	var whichDrop = document.getElementById(dropid);
	if (whichDrop.className=="expandblock") {
		whichDrop.className="collapseblock";
	}
	else {
		whichDrop.className="expandblock";
	}
}

