<!--
		function sendExcerpt(theLink) {
			var strSubject = "I just read a cool new book . . .";
			
			var strBody = "Check this out, http://www.candlewick.com/witchchild !  I just read the first chapter of a book called WITCH CHILD, and I think you'd really like it.";
			
			var strLink = "mailto:?";
			strLink += "subject=" + strSubject;
			strLink += "&body=" + strBody;
			theLink.href = strLink;
			return true;
		}
	//-->

