home *** CD-ROM | disk | FTP | other *** search
- function OnLoad()
- {
- //Internal replacable strings
- //oPROGNAME
- //oREMADDR
- //oREMPORT
- //oLOCPORT
- //oTRUSTEDMODULE
-
-
- var args = getArgs();
-
- if (args.ProgName)
- {
- //oPROGNAME.innerText = args.ProgName;
- DrawProgramName(args.ProgName);
- }
-
- if (args.remaddr)
- {
- oREMADDR.innerText = args.remaddr;
- }
-
- if (args.remport)
- {
- oREMPORT.innerText = args.remport;
- }
-
- if (args.locport)
- {
- oLOCPORT.innerText = args.locport;
- }
-
-
- CollapseSections();
- }
-