// JavaScript Document

var suf = 'bbbargoons.' + 'c' + 'om';	

function emGen (em1, em2){	

	em1 = em1.replace(/[!@#$%^&*()]/g, '');
	em2 = em2.replace(/[!@#$%^&*()]/g, '');
	return (em1 + em2 + '@' +suf);
}


function infEm(){
	
	//use these special characters to obfuscate
	//!,@,#,$,%,^,&,*,(,)
	
	return emGen('i#n@f', '$o!@#$');	

}

function writeMt(subject){
	document.write('<a href="mailto:' + infEm() + '?subject='+ subject +'">' + infEm() + '</a>' );
}