function mailpage()
{
mail_str = "mailto:?subject=Something Funny" + document.title;
mail_str += "&body=I thought you might get a laugh out of this " + document.title;
mail_str += ". Heres the link to it, " + location.href; 
location.href = mail_str;
}
