function mailpage()
{
  mail_str = "mailto:?subject=Check out this web page: " + document.title;
  mail_str += "&body= I recommend taking a look at this web page -- " + document.title;
  mail_str += ". You can check this out at, " + location.href; 
  location.href = mail_str;
}