// JavaScript Document
function sendEmail(sUser, sDomain, sSubject){
location.href = 'mailto:' + sUser + '@' + sDomain + '?subject=' + sSubject;
}