// JavaScript Document
function mailpage()
{
  mail_str = "mailto:?subject=" + document.title;
  mail_str += "&body=I recommend this article from the Tufts Journal -- " + document.title;
  mail_str += ". You should check it out at " + location.href; 
  location.href = mail_str;
}