﻿function eqLev() {
    
    companyLogo = document.getElementById("divCompanyLogo");
    menu = document.getElementById("divMenu");
    pageContent = document.getElementById("ctl00_cntPlaceHolder_rndPanelPageContent_pageContent");         
    masterPageContent = document.getElementById("content");
    clientTestimonials = document.getElementById("ctl00_usrCtrlTestimonials_rndPnlTestimonials_clientTestimonials");

      
    companyLogoHeight = companyLogo.offsetHeight;
    menuHeight = menu.offsetHeight;
    pageContentHeight = pageContent.offsetHeight;
    clientTestimonialsHeight = clientTestimonials.offsetHeight;

    //total = companyLogoHeight + menuHeight;
    //total = companyLogoHeight + menuHeight + pageContentHeight;
    total = companyLogoHeight + menuHeight + pageContentHeight;
    
//    alert("Company Logo:" + companyLogoHeight);
//    alert("Menu Height:" + menuHeight);
//    alert("Page Content Height:" + pageContentHeight);
//    alert("Client Testimonials Height:" + clientTestimonialsHeight);
      
//    alert("Total:" + total);
    
    //masterPageContent.style.height = (total + 60) + "px";

    //alert("Page Content:" + pageContentHeight);
    //alert("Client Tesimonials:" + clientTestimonialsHeight);

    if (pageContentHeight > clientTestimonialsHeight) {        
        //clientTestimonials.style.height = ((pageContentHeight - 13) + 25) + "px";
        clientTestimonials.style.height = pageContentHeight + "px";
        masterPageContent.style.height = companyLogoHeight + menuHeight + pageContentHeight + + 135 + "px";
    }
    else {        
        pageContent.style.height = clientTestimonialsHeight + "px";
        masterPageContent.style.height = companyLogoHeight + menuHeight + clientTestimonialsHeight + 135 + "px";
    }    
    
    
}
