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