function mailpage()
{
mail_str = "mailto:?subject=Some interest perhaps in the article: " + document.title;
mail_str += "&body=I read this and thought you might be interested in " + document.title;
mail_str += ". You can view it by clicking this link..., " + location.href;
location.href = mail_str;
}
