function addEmail2(uName){
var first = 'ma';
var second = 'il';
var third = 'to:';

// example: user554554
var address = uName;

// example: hotmail
//Change this to the proper domain
var domain = 'indiemusicbands';

//Change this to the proper extension (.com,.net,.biz)
var ext = 'com';

document.write('<a href="');
document.write(first+second+third);
document.write(address);
document.write('@');
document.write(domain);
document.write('.');
document.write(ext);
document.write('">');
document.write('Link manager</a>');
}
