<!--
//
// super-paranoia mailto obfusticator - v1.2 - leave this line
//
// e-mail link obfusticator - hides your mailto: links from robot
// crawlers and email grabbers.
//
// Hacked together by Greg Hewitt-Long - Web Your Business Inc.
// Inspiration from the regulars at Community.actinic.com
//
// Thanks to Jo of Pinbrook and Norman of Drillpipe and other
// regulars for the evolving ideas to improve the script.
//
// Usage: split the first part of the email into two pieces
// - put the first part into 'emfirst'
// - put the second part into 'emsecond'
// Next, split the domain name into two pieces
// - put the first into 'domfirst'
// - put the second into 'domsecond'
// - put the TLD (com, net, org, info etc), into 'domthird'
//
// You might change the 'at' and 'dot' additions - it's
// really up to you - 'at' must total 64 and 'dot' = 46 ..
//
var mai = 'mai'
var lto = 'lto'
var emfirst = 'Ma'
var emsecond = 'tt'
var at = String.fromCharCode(48 + 10 + 6)
var dot = String.fromCharCode(20 + 26)
var domfirst = 'TheAllianceM'
var domsecond = 'arketingGroup'
var domthird = 'com'
mailE=(emfirst + emsecond +
	 at + domfirst + domsecond + dot + domthird)
document.write('<a href="' + mai + lto + ':' +
	 mailE + '">' +
	 mailE + '</a>')
//-->