function emailFriend(body) {
            var doc = "mailto:" + "?subject=Website Article Recommendation&body=I was just reading this article, and thought of you.  Click on the link to check it out: " + escape(body);
            window.location = doc;
}

function emailFriendAlice(body) {
            var doc = "mailto:" + "?subject=Alice In Wonderland&body=I just found this website with a complimentary Alice In Wonderland e-Book, and thought of you.  Click on the link to check it out: " + escape(body);
            window.location = doc;
}
