function amail(name,domain,co,output) {
	if(name=="") return;
	name = eval('String.fromCharCode(' + name + ')');
	domain = eval('String.fromCharCode(' + domain + ')');
	co = eval('String.fromCharCode(' + co + ')');
	var mail = (name + '&#64;' + domain + "." + co);
	var out = "";
	if(output!="") out = output;
	else out = mail;
	document.write('<a href="mai' + 'lto:' + mail + '" target="_blank">' + out + '</a>');
}
