//SPAM PROTECTION
function spamProtect(emailName)
{
    //compile full name
    var fullAddress = emailName + '@' + 'cdscpa.com';
   	
    //write email to webpage 
    document.write('<a href="mailto:' + fullAddress + '">' + fullAddress + '</a>')
}
