/* Loesung funktioniert auch fuer den IE6 */
function getWindowHeight(win) {
    if (win == undefined) win = window;
    if (win.innerHeight) {
        return win.innerHeight;
    }
    else {
        if (win.document.documentElement
            && win.document.documentElement.clientHeight) {
            return win.document.documentElement.clientHeight;
        }
        return win.document.body.offsetHeight;
    }
}
var height = getWindowHeight();
document.write('<style type="text/css"> #Wrapper { border-bottom: 0; min-height: '+(height-1)+'px } </style>');
document.write('<!--[if lt IE 7.0]><style type="text/css"> #Wrapper { height: '+(height-1)+'px } </style><![endif]-->');