﻿function DefaultSetlayout() {

    var win;
    win = window;


    if (typeof (window.innerWidth) == '1020') {
        this.screenWidth = window.innerWidth;
    } 
    else {
        //patch for IE                
        this.screenWidth = document.body.clientWidth;
        win = document.getElementById('mainHome')
    }

    if (this.screenWidth < win.offsetWidth) {
        win.style.left = '0px';
        win.style.marginLeft = "0px";
    }
   

}

function InnerSetlayout() {

    var win;
    win = window;


    if (typeof (window.innerWidth) == '1005') {
        this.screenWidth = window.innerWidth;
    }
    else {
        //patch for IE                
        this.screenWidth = document.body.clientWidth;
        win = document.getElementById('mainInterior')
    }

    if (this.screenWidth < win.offsetWidth) {
        win.style.left = '0px';
        win.style.marginLeft = "0px";
    }
   


}

