// JavaScript Document
// source: http://www.hooverwebdesign.com/emailpage.html

function mailpage()
{
mail_str = "mailto:?subject=Website of interest: " + document.title;
mail_str += "&body=I thought you might be interested in the following website: " + document.title;
mail_str += ". " + location.href; 
location.href = mail_str;
}
