﻿function ResizeContent() 
{
    var minHeight = 500;
    var divHeight = document.getElementById('divCenter').offsetHeight;

    if (divHeight < minHeight)
        document.getElementById('divCenter').style.height = minHeight + "px";

}
