var currentURL = location.href.toUpperCase();

function testPage() {
    if(currentURL.indexOf("ACCOUNTMANAGEMENT/ADDRESS.ASPX") == -1) {
    } else {
        document.getElementById("rbaLeft").style.display = "none";
        document.getElementById("stretchMiddle").style.width = "727px";
        if(document.all) {
            document.getElementById("stretchBackground").style.left = "-23px";
        }
    }
}

testPage();
