home *** CD-ROM | disk | FTP | other *** search
- function fnOnResize(some) {
- var barBody = document.frames.item(some.id).document.body;
-
- var bHorResize = false;
- if (nLastToolbarBodyHeight != barBody.scrollHeight) {
- nLastToolbarBodyHeight = some.runtimeStyle.height =
- barBody.scrollHeight;
- bHorResize = true;
-
- };
-
- if (nLastFrameBodyHeight != some.document.body.clientHeight ||
- bHorResize) {
-
- some.nextSibling.runtimeStyle.height =
- some.document.body.clientHeight -
- nLastToolbarBodyHeight - 2;
-
- nLastFrameBodyHeight = some.document.body.clientHeight;
- };
- };
-
- /*
- function fnGetParentIFrame() {
- if (window.parent.document.all.ctLeftToolbar != null) {
- return (window.parent.document.all.ctLeftToolbar);
- }
- else if (window.parent.document.all.ctRightToolbar != null) {
- return (window.parent.document.all.ctRightToolbar);
- };
-
- return null;
- };
- function fnOnLoadToolbar() {
- if (window.parent.document.all.ctLeftToolbar != null) {
- window.parent.fnResizeToolbar(
- window.parent.document.all.ctLeftToolbar);
- }
- else {
- window.parent.document.fnResizeToolbar(
- window.parent.document.all.ctRightToolbar);
- };
- };
- */