function changeHeights(div_id, embed_id, newHeight) {
    newHeight += "px";
   
    document.getElementById(div_id).style.height = newHeight;
   
    if(document.all) {
        //HELLO IE6
        document.getElementById(embed_id).style.height = newHeight;
    }
}