// JavaScript Document
function mailpage()

{

  mail_str = "mailto:?subject=Website recommendation:" + document.title;
  mail_str += "&body=I would like to recommend you the following website: " + document.title;
  mail_str += " : " + location.href; 
  location.href = mail_str;

}
