Maybe you’ll want to add a link that allows sending of current URL emails to a friend. This is how the script looks:
<script type="text/javascript">
function mailpage()
{
mail_str = "mailto:?subject=Check out the " + document.title;
mail_str += "&body=I thought you might be interested in the " + document.title;
mail_str += ". You can view it at, " + location.href;
location.href = mail_str;
}
</script>
<a href="javascript:mailpage()">Email to a friend</a>