function ShowEmail(username,server) {
	document.write("<a href=mailto:");
	document.write(username);
	document.write("@");
	document.write(server);
	document.write(">");
	document.write(username);
	document.write("@");
	document.write(server);
	document.write("</a>");
}

function ShowEmailWithStyle(username,server) {
	document.write("<a href=mailto:");
	document.write(username);
	document.write("@");
	document.write(server);
	document.write(' style="text-decoration: none;">');
	document.write(username);
	document.write("@");
	document.write(server);
	document.write("</a>");
}