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

