//Creates email message with subject, body, and URL of invoking page
function mailpage()
{
  mail_str = "mailto:?subject= Here's an interesting web site&body=You'll enjoy visiting the web page at  " + location.href; 
  location.href = mail_str;
}

