// SEND_EMAIL.JS
// - Will conjugate parameters to create a mailto link; hide your email address from the SPAM searchbots but allow the user to click on the link to send email...
// - Rod Cushman, RMC Consulting, LLC - www.rodcushman.com.  
var user;
var domain;
var suffix;
var csubject;
function send_email(user, domain, suffix,csubject){
   document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '?subject='+ csubject+ '">' + user + '@' + domain + '.' + suffix + '</a>');
}

