﻿// JScript File

function EmailLink(name, domain, text) {
    document.write('<a href=\"mailto:'+name+'@'+domain+'\">');        
    if (text == '') {
        document.write(name+'@'+domain+'</a>');        
    } else {
        document.write(text+'</a>');        
    }
}