function mailpage()
{
mail_str = "mailto:?subject=Check out " + document.title;
mail_str += "&body=You might be interested in the " + document.title;
mail_str += ". Viewable here: " + location.href; 
location.href = mail_str;
}