// JavaScript Document

function address(user,domain) {
		var link = user + "@" + domain + ".com";
		document.write("<a href='mailto:" + link + "'>");
		document.write(link);
		document.write("</a>");
	}

