function returnSize () {
    var de = document.documentElement;
    var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
    return h;
}

$(function(){
    h=returnSize();
    h=h-100;
    $('#pagina').css('min-height', h);
})