function mailpage(){
  mail_str = "mailto:?subject=" + document.title;
  mail_str += "&body= I recommend you read this - " + document.title;
  mail_str += ". View:" + window.location.href; 
  location.href = mail_str;
}


