// JavaScript Document
function mailpage() 
{ 
var mail_str;
mail_str = "?subject=" + document.title;
mail_str += "&body=Hello,%0D%0A%0D%0AThought you might be interested in this page:%0D%0A%0D%0A" + document.title; 
mail_str += "%0D%0A%0D%0A" + location.href; 
 location.href = "mailto:" + mail_str;
} 