// JavaScript Document
function EMail(name, domain) {
	this.name = name;
	this.domain = domain;
	
	this.showEmailLink = showEmailLink;
}

function showEmailLink() {
	document.write('<a href="mailto:'+this.name+'@'+this.domain+'">'+this.name+'@'+this.domain+'</a>');
}
