
function f9r() {
    return new Date().getTime();
}
function f9InitFrame() {
    var f9iframe = document.createElement("iframe");
    f9iframe.setAttribute("id", "f9iframe");
    f9iframe.setAttribute("src", "http://www.savings-account-guide.com/savingsfinder/clients/PYF/loading.html");
    f9iframe.setAttribute("name", "f9iframe");
    f9iframe.style.width = "789px";
    f9iframe.style.height = "505px";
    f9iframe.style.borderWidth = "0px";
    f9iframe.setAttribute("frameborder","0");
    f9iframe.setAttribute("border","0");
    f9iframe.setAttribute("scrolling","no");
    if (/msie/.test(window.navigator.userAgent.toLowerCase()))
    {
        f9iframe.allowTransparency = true;
        f9iframe.frameBorder = "0";
    }
    
    var f9divclose = document.createElement("div");
    f9divclose.style.textAlign = "right";
    f9divclose.innerHTML = "<a href=\"javascript:f9HideCalculator();\"><img src=\"http://www.savings-account-guide.com/savingsfinder/clients/PYF/images/close.png\" style=\"border-width:0px;\" alt=\"Close\" /></a>";
    
    
    var f9idiv = document.createElement("div");
    f9idiv.setAttribute("id", "divF9ISavings");
    f9idiv.style.width = "789px";
    f9idiv.style.height = "505px";
    f9idiv.style.display = "none";
    
    f9idiv.appendChild(f9divclose);
    f9idiv.appendChild(f9iframe);

    document.body.appendChild(f9idiv);
}

function f9IShowCalculator() {
    f9ModalDialog.show("divF9ISavings");
    document.getElementById("f9iframe").src = "http://www.savings-account-guide.com/savingsfinder/Content.aspx?guid=931b8755-c233-411b-b742-a08c92970785&f9cmd=start&r="+f9r();
}
function f9IShowAltCalculator() {
    f9ModalDialog.show("divF9ISavings");
    document.getElementById("f9iframe").src = "http://www.savings-account-guide.com/savingsfinder/Content.aspx?guid=931b8755-c233-411b-b742-a08c92970785&f9cmd=startalt&r="+f9r();
}

function f9HideCalculator() {
    f9ModalDialog.hide();
}

f9InitFrame();