function mailpage() 

{
  mail_str = "mailto:?subject= This is the subject " + document.title;
  mail_str += "&body= This is the body" + document.title;
  mail_str += ". You should check this out at, " + location.href; 
  location.href = mail_str;
}

 
