﻿// JScript File

function setVariables()
{    
    var my_window;
    var callingWindow;
}
function languageSwitchHover()
{
    var hoverImage = new Image();
    hoverImage.src = "images/arrow_hover.gif";
    document.getElementById("imgLanguageSwitch").src = hoverImage.src;    
}
function languageSwitchRestore()
{
    var originalImage = new Image();
    originalImage.src = "images/arrow_on.gif";
    document.getElementById("imgLanguageSwitch").src = originalImage.src;    
}
function Open()
{  
    window.open("Interstitial.aspx","my_window","width=380, height=280, toolbar=0,scrollbars=1");
}
function NoFeeReOpen()
{
    window.open("http://nofeemortgageplus.bankofamerica.com");
}
function Close()
{
    window.close();
}
function Continue()
{
    window.close();
    window.location("http://nofeemortgageplus.bankofamerica.com");
}
function buttonMouseOver()
{
    document.getElementById("imgNoFee").style.cursor = 'hand';
}

function ContinueInEnglish(link)
{
    window.opener.location.href=link
    window.close();
}








