﻿function doEmail(strTitle, strBody) {
    var strUrl = "mailto:?subject=" + strTitle;
    strUrl += "&body=" + strBody;
    location.href = strUrl;
}
