
function makelink(name,domain,desc,pre,post){if(pre!=null&&pre!="")
document.write(pre);document.write('<a href="mailto:');document.write(name+'&#64;');document.write(domain+'">');if(desc!=null&&desc!="")
document.write(desc)
else
document.write(name+'&#64;'+domain);document.write('</a>');if(post!=null&&post!="")
document.write(post);}