 /*
	Utility Functions for Obfuscation of E-mail Addresses.

	The working function is mta(a,b,c) where 

		a = mailbox name
		b = first part of domain name before last dot
		c = last part of domain name after last dot
		d = subject (not required)
*/

function fat()
{
 return ('\x40');
}
function mt()
{
 cl='\x3a';
 d='l';
 a='m';
 f='o';
 c='i';
 e='t';
 b='a';
 return (a+b+c+d+e+f+cl);
}
function mta(a,b,c,d)
{
 if (d) ls=mt()+a+fat()+b+'.'+c+'?subject='+d;
 else ls=mt()+a+fat()+b+'.'+c;
 window.location.replace(ls);
}
