<!--

/*
d = domain
n = name
tld = TLD, e.g. 'com'
*/
function eMe(d,n,tld){
	// alert('eMe');
	e = 'mailto:' + n + '@' + d + '.' + tld;
	// alert(e);
	this.location = e;	
	return false;
}


-->