
    function checkWindow() {

        var hoehe = window.innerHeight || (window.document.documentElement.clientHeight || window.document.body.clientHeight);
        var conth = hoehe - 109;

        if(conth < 860) {
            conth = 860;
        }

        document.getElementById('content').style.height = conth + 'px';

    }
