function mailpage()
{
  mail_str = "mailto:?subject= Webpage: " + document.title;
  mail_str += "&body= I wanted to send you this webpage " + document.title;
  mail_str += ". You should check this out at, " + location.href; 
  location.href = mail_str;
}
