window.onload = setBGSize;
function setBGSize(){
    BGHeight = document.getElementById("divContentArea").offsetHeight;
    BGHeight += 130;
    if(BGHeight > document.height){
        document.getElementById("bgWhite").style.height = BGHeight + 'px';
    }
}
