// JavaScript Document

function mailpage()
{
mail_str = "mailto:?subject=" + document.title;
mail_str += "&body=An email has been sent to you from " + document.title;
mail_str += ". You can view it at, " + location.href;
location.href = mail_str;
}