﻿function SetHeight()
{
    var winHeight;
    var winWidth;
    var footerHeight=40;
    var menuHeight=35;
    var paddingOffset=80;
    var borderDiv=$('#MainDiv').get(0);
    var contentDiv=$('#ContentDiv').get(0);
    var browserApp=navigator.appName;
    var contentDivHeight;//=parseInt("1",10);
    
    var contentDivHeight=0;
    
    if (browserApp=='Microsoft Internet Explorer')
    {
        
        winHeight=document.documentElement.clientHeight-50;                
        contentDivHeight=winHeight-(125+footerHeight+menuHeight+paddingOffset);
        
        borderDiv.style.height=winHeight;         
        borderDiv.style.marginTop=25;             
        contentDiv.style.height=contentDivHeight;
    }
    else
    {    
    
        if (navigator.appVersion.match('Safari'))
            {
                winHeight=window.innerHeight-50;    
                contentDivHeight=winHeight-(125+footerHeight+menuHeight+paddingOffset);
                borderDiv.style.height=winHeight+'px';  
                borderDiv.style.marginTop='25px';          
                contentDiv.style.height=(contentDivHeight)+'px';                
            }
        else
            {
                winHeight=window.innerHeight-50;    
                contentDivHeight=winHeight-(125+footerHeight+menuHeight+paddingOffset);
                borderDiv.style.height=winHeight+'px';  
                borderDiv.style.marginTop='25px';          
                contentDiv.style.height=(contentDivHeight)+'px';
            }
    }

}
