function print_email(prefix, domain, ext, display){
    // Assemble the Address
    var addy = prefix + "@" + domain + "." + ext;

    // Check and Set the Display Param
    if (display == 'normal'){
        var d = addy;
    } else {
        var d = display;
    }

    // Write the Address into the HTML
    document.write("<a href=\"mailto");
    document.write(":" + addy + "\">" + d + "</a>");
}

