function resizeContentBox()
{
   /* var difference = 110;
    var innerHeight = parseInt(window.innerHeight);
    var contentHeight = parseInt(document.getElementById("content").offsetHeight);
    alert("offset: " + contentHeight);
    if (contentHeight > (innerHeight - difference))
    {
        var newHeight = innerHeight - difference;
        alert("Correcting for overflow?\n" + contentHeight + " > " + (innerHeight - difference) + "\nNew Height: " + newHeight);
        document.getElementById("content").style.height = newHeight;
        document.getElementById("content").style.overflow = "scroll";
    }
    else
    {
        alert("No overflow?\n" + contentHeight + " < " + (innerHeight - difference));
    }*/
}
