// JavaScript Document

function writeObfuscatedEmailLink(user, domain, tld, title) {
	email = user + "@" + domain + "." + tld;
    document.write("<a href=\"mailto:" + email + "\" title=\"" + title + "\">");
    document.write(email + "</a>");	
}