// JavaScript Document
var links = document.getElementsByTagName('a');
for(var i = 0; i < links.length; i++) {
   if (links[i].rel.indexOf("email")!=-1){
		links[i].onclick = disclaimerPrompt;
   } 
}


function disclaimerPrompt() {
	return confirm("By contacting us via e-mail you are granting us your authorization to communicate with you via e-mail for matters related to your account with us or other business we may have. Please be advised that we will not accept trade or account change instructions from you via e-mail. If you do not wish to grant us the authority to communicate with you via e-mail please do not proceed.");	
}
