function mailpage()
{
  mail_str = "mailto:?subject= Hi, you may wish to review: " + document.title;
  mail_str += "&body= I ran across an online artile: " + 
              document.title + ".\n";
  mail_str += "You may wish to check it out at, " + location.href; 
  location.href = mail_str;
}
