function fixHeight() {
    
    var height = document.getElementById('rightbar').offsetHeight;

        var newHeight = (height + 20);

    if(newHeight < 350) {
        newHeight = 350;
    }

    document.getElementById("copycontainer").style.height = newHeight + "px";
}

window.onload = fixHeight;