// JavaScript Document
function mailpage()
{
  mail_str = "mailto:?subject= " + document.title;
  mail_str += "&body= I think this page might be of interest to you:  " + document.title;
  mail_str += " " + location.href; 
  location.href = mail_str;
}