﻿function mailpage(subject) {
    mail_str = "mailto:?subject=" + subject;
    mail_str += "&body=I thought you might be interested in this: " + document.title; +"."
    mail_str += ".%0d%0a%0d%0aYou can view it online at, " + location.href;
    location.href = mail_str;
}