function mailpage()
{
mail_str = "mailto:?subject=Check out this page: " + document.title;
mail_str += "&body=I thought you might be interested in this page. ";
mail_str += "It is titled '" + document.title + "' and you can view it at " + location.href; 
location.href = mail_str;
}
