// ##########################################################################

// **** CFS GROUP CONTACT PAGE ****

// WRITE EMAIL ADDRESES DYNAMICALLY TO PREVENT SPAMMER SCRAPING


// ##########################################################################

// SEND MAIL THROUGH WIN32 CLIENT

var bAt = "@";
var dOt = ".ca";

function sendmail(bTo,domain){

var Ln = "-------------------------------------------------------------------------";
var NL = "%0D%0A";
var subInfo= "";
window.location = "mailto:"+bTo+bAt+setDom(domain)+dOt
+"?subject="
+""+subInfo 

	}

function showmail(bTo,domain){
document.write(bTo+bAt+setDom(domain)+dOt);
	}

function setDom(domain){
if (domain == "CF"){
return "cfservices";}

/* 
else{
return "ea";} 
 */
	}


// WRITE MAIL LINK STYLE

document.write('<style>A.mail-link, A.mail-link:link, A.mail-link:visited { font:bold 11px Arial; color:#000; text-decoration:none; }</style>');
document.write('<style>A.mail-link:hover,  A.terms-link:active { color:#AE2833;text-decoration:underline; }</style>');

// ##########################################################################
