/**
 * @author Domenico
 */
function setContentHeight(){
    changeContentHeight();     
    window.onresize = changeContentHeight;
}

function changeContentHeight(){
     var innerHeight;
    
    if(Browser.Engine.trident){
       innerHeight = document.documentElement.clientHeight;
    }else{
       innerHeight = window.innerHeight; 
    }
    
    $('scrollContent').setStyles({
        height : ( innerHeight - 127)+'px',
        overflow: 'auto'
     });
}

