function mailpage()
{
  mail_str = "mailto:?subject=" + escape (document.title);
  mail_str += "&body=" + escape("I thought you might be interested in this page entitled " + document.title);
  mail_str += escape (". You can see it at " + location.href);
  location.href = mail_str;
}
