﻿function fixHeight()
{
    var x = document.getElementById("container").offsetHeight;
    x += 50;
    document.getElementById("container").style.height = x.toString() + "px";
}
window.onload=fixHeight;
