var stdServer = 'wright.edu'; // Set the default server domain 
function sendEmail(a,b,c,d) { // name, subject, domain, extension
if (a && b && c && d) { strEpost = 'mai'+'lto:'+a+'@'+c+'.'+d+'?subject='+b; } // Sends mail to any server 
else { strEpost = 'mai'+'lto:'+a+'@'+stdServer+'?subject='+b; } // Sends mail to the default server 
//alert('URL = '+strEpost);
location.href = strEpost; 
}