﻿function leave(target) {
    switch (target) {
        case "rates":
            window.location = "depositRates.aspx"
            break;
        case "calc":
            window.location = "calculators.aspx"
            break;
        default:
            break;
    }
}


function obfiscateEmail(email, emailHost) {
    var contact = "Email"
    var subject = "Feedback%20from%20www.MorganFed.com"
    var body = "*Never%20include%20your%20SSN%20or%20Account%20Number.%0D*Please%20include%20your%20name%20and%20phone."
    //document.write("<a href=" + "mail" + "to:" + email + "@" + emailHost + "?subject=" + subject + "&body=" + body + ">" + contact + "</a>" + ".")
    document.write("<a href=" + "mail" + "to:" + email + "@" + emailHost + "?subject=" + subject + "&body=" + body + ">" + email + "@" + emailHost + "</a>");
}
    