// JavaScript Document

function LoadFrame(frid) {
var IFR = document.getElementById(frid);
IFR.height = (IFR.contentWindow)?
IFR.contentWindow.document.body.scrollHeight:
document.frames[frid].document.body.scrollHeight;
}
