function mailpage() {
  mail_str = "mailto:?subject=This might be of interest: " + document.title;
  mail_str += "&body=I thought you might be interested in this: " + document.title;
  mail_str += ". %0A%0AYou can view it at, " + location.href; 
  location.href = mail_str;
}
