    function load() {
        var myWidth = 0, myHeight = 0;
        if (typeof (window.innerWidth) == 'number') {
            myWidth = window.innerWidth; myHeight = window.innerHeight;
        } else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {
            myWidth = document.documentElement.clientWidth; myHeight = document.documentElement.clientHeight;
        } else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {
            myWidth = document.body.clientWidth; myHeight = document.body.clientHeight;
        }
        //window.alert('tabletop = ' + document.getElementById("topshadow").style.height);
        //document.getElementById("topshadow").offsetLeft = 172;
        document.getElementById("topshadow").style.top = 110;
        //document.getElementById("topshadow").style.height = document.getElementById("contentbottom").offsetTop;
        document.getElementById("topshadow").style.left = (myWidth / 2) - 270;
        //document.getElementById("topshadow").style.width = 20;

        document.getElementById("bottomscale").style.top = 410;
        document.getElementById("bottomscale").style.height = document.getElementById("contentbottom").offsetTop - 300;
        document.getElementById("bottomscale").style.left = (myWidth / 2) - 286;
        document.getElementById("bottomscale").style.width = 30;
        
        
        
        //document.getElementById("topshadow").style.top = document.getElementById("tabletop").style.top;
        //document.getElementById("topshadow").style.height = document.getElementById("contentbottom").style.top - document.getElementById("tabletop").style.top;
        //document.getElementById("topshadow").style.left = document.getElementById("tabletop").style.left + 472;
        //window.alert('bottom = ' + document.getElementById("contentbottom").offsetTop);
        //window.alert('contentbottomleft = ' + document.getElementById("topshadow").offsetLeft);
        //window.alert('logo = ' + document.getElementById("sonicsphoto").style.left);
        //window.alert('logo = ' + document.getElementById("topshadow").style.left);
    }