function mailpage()
{
  mail_str = "mailto:?subject= " + document.title;
  mail_str += "&body= Have a look at this page from the " + document.title + " website.";
  mail_str += " You can find it at this address: " + location.href; 
  location.href = mail_str;
}
