home *** CD-ROM | disk | FTP | other *** search
-
- function GetControl(strPane, strObject)
- {
- var objPane, objControl, collFrames;
-
- collFrames = window.parent.parent.frames;
-
- if (collFrames.length > 0)
- {
- strPane = strPane.toUpperCase();
- objPane = collFrames.item(strPane);
-
- if (objPane != null)
- {
- if (strPane == "LEFTPANE")
- objControl = objPane.document.all(strObject);
- else if (strPane == "RIGHTPANE")
- objControl = objPane.frames("PrimaryFrame").document.all(strObject);
- else
- objControl = null;
-
- if (objControl != null)
- if (objControl.readyState == 4)
- return objControl;
- }
- }
-
- return null;
- }
-
- function Exit()
- {
- window.external.ExitHost();
- }