function showFullExcerpt(id) {
	var thecutoff = document.getElementById('cutofftext'+id);
	var thetail = document.getElementById('thetailof'+id);
	var therest = document.getElementById('therestof'+id);
	thecutoff.style.display='none';
	thetail.style.display='inline';
	if (therest)
		therest.style.display='block';
}
function hideFullExcerpt(id) {
	var thecutoff = document.getElementById('cutofftext'+id);
	var thetail = document.getElementById('thetailof'+id);
	var therest = document.getElementById('therestof'+id);
	thecutoff.style.display='inline';
	thetail.style.display='none';
	if (therest)
		therest.style.display='none';
}