/* Prevent execution of addrEncoder if included more than once */
if(typeof window.me == "undefined") {
	var addrEncoder = {
		menc : function(p1, p2, p3) {
			// document.write("Email: " + p1 + "@" + p2 + "." + p3);
			var addr = p1 + "@" + p2 + "." + p3; 
			document.write("Email: <a href='mailto:" + addr + "'>" + addr + "</a>");
		}
	};		

	// Map the addrEncoder utils namespace to the 'me' one.
	var me = addrEncoder;
}

