function checkDimensionsAndResize(){
    var bc = document.getElementById("borderCenter");

    if(document.getElementById("wrapperCenter")){
        var wc = document.getElementById("wrapperCenter");
    }else{
        var wc = document.getElementById("SubWrapperCenter");
    }

    if(window.innerWidth <= 1034){
        bc.style.width = "998px";
        wc.style.marginLeft = "4px";
        wc.style.marginRight = "4px";
    }else{
        bc.style.width = "1017px";
        wc.style.marginLeft = "13px";
        wc.style.marginRight = "13px";
    }

    //return true;
}

window.onresize = checkDimensionsAndResize;
