<!--
function frame_check(){
 if(frame.document.body){
    f=frame.document.body.scrollHeight;
    if(f)
    document.getElementById("frame_set").height=f+20;
    setTimeout("frame_check()",100);
 }else{
    setTimeout("frame_check()",100);
 }
}
setTimeout("frame_check()",10);
// -->