//a little obfuscatory function to reduce the parasite load

function matou(url) {
	url = url.replace(/http:\/\//i, ""); //gets rid of the http:// at the beginning of the obfuscated address
	urlsplit = url.split('/aoxu-'); //splits the remaining string into components
	urlsplitlen = urlsplit.length; //gets the number of components
	addr = urlsplit[1]+"&#X00040;"+urlsplit[0];
	if (urlsplitlen > 2 && urlsplit[2].length > 0) {
		subj = "?subject="+urlsplit[2];
	} 
	else subj = "";
	if (urlsplitlen > 3 && urlsplit[3].length > 0) {
		outtxt = urlsplit [3];
	}	
	else outtxt = addr;
		//compenents should be in this order: second part of email address, first part of email address, subject, output text
		//if you dont want a subject, just leave out the last two parts in the js call
		//if you dont want an output text different than the email address, just leave out the last part in the js call
		//if you want a different output text, but no subject, you still have to have 3 '/aoxu' in the js call, the second and third with nothing between
	document.write("<a href=\"&#00109;&#X0061;i&#108;t&#00111;:"); //writes the beginning of the email link
	document.write(addr);
	document.write(subj);
	document.write("\">"); //finishes writing the email link, with the output text being the email address only
	document.write(outtxt);
	document.write("<\/a>");
}

/* Original matou function written by Ruedi Birenheide 

function matou(url) {
	url = url.replace(/http:\/\//i, "");
	document.write("<a href=\"&#00109;&#X0061;i&#108;t&#00111;:"+url.split('/aoxu-')[1]+"&#X00040;"+url.split('/aoxu-')[0]+"\">"+url.split('/aoxu-')[1]+"&#64;"+url.split('/aoxu-')[0]+"<\/a>");
}

*/