function GetHeight(cal_box,cal_box2)
{
    var app = navigator.appName.charAt(0);
    if(navigator.userAgent.indexOf("Safari") != -1){
        document.getElementById(cal_box).height = parent.frames[cal_box2].document.body.scrollHeight + 20;
    }else if (app == "N")
    {
        document.getElementById(cal_box).height = parent.frames[cal_box2].document.height +20;
    }
    else
    {
        document.getElementById(cal_box).height = parent.frames[cal_box2].document.body.scrollHeight + 20;
    }
}

/*‚¨‚·‚·‚ß*/

