/*아이프래임 설정*/
function calcHeight(FrameName)
{
    if(document.all) {
            var the_height = frames[FrameName].document.body.scrollHeight;
        } else {
         var the_height= document.getElementById(FrameName).contentWindow.document.body.offsetHeight;
        }
  document.getElementById(FrameName).height=the_height;
} 

