﻿function setHeightHome() {
    var homecontent = document.getElementById('HomeContent');
    var latestnews = document.getElementById('HomeLatestNews');
    var featureproduct = document.getElementById('FeatureProduct');
    var featuredescription = document.getElementById('FeatureDescription');
    var totalHeightLeft = (homecontent.clientHeight + latestnews.clientHeight);
    var desiredLeftHeight = 371;

    if (totalHeightLeft < desiredLeftHeight) {
        var newHeightLeft = (homecontent.clientHeight + (desiredLeftHeight - totalHeightLeft)) - 52;
        homecontent.style.height = newHeightLeft + 'px';
    }

    if (featureproduct.clientHeight < desiredLeftHeight) {
        var newHeightRight = (featuredescription.clientHeight + (desiredLeftHeight - featureproduct.clientHeight)) - 14;
        featuredescription.style.height = newHeightRight + 'px';
    }
}
setHeightHome();