home *** CD-ROM | disk | FTP | other *** search
- function OnLoad()
- {
- //Internal replacable strings
- //oPROGNAME
- //oREMADDR
- //oREMPORT
- //oLOCPORT
- //oTRUSTEDCOMPANY
-
- var args = getArgs();
-
- if (args.ProgName)
- {
- //oPROGNAME.innerText = args.ProgName;
- DrawProgramName(args.ProgName);
- }
-
- if (args.remaddr)
- {
- oREMADDR.innerHTML = DrawVisualTrackingLink(args.remaddr);
- }
-
- if (args.remport)
- {
- oREMPORT.innerText = args.remport;
- }
-
- if (args.locport)
- {
- oLOCPORT.innerText = args.locport;
- }
-
- if (args.risk)
- {
- switch(args.risk)
- {
- case "0":
- idstrRiskLow.style.display = "";
- break;
- case "1":
- idstrRiskMedium.style.display = "";
- break;
- default:
- idstrRiskHigh.style.display = "";
- break;
- }
- }
-
- if (args.virscan)
- {
- switch(args.virscan)
- {
- case "0":
- idstr_VIRUSResult0.style.display = "";
- idimg_VSIcon_Check.style.display = "";
- break;
- case "1":
- idstr_VIRUSResult1.style.display = "";
- idimg_VSIcon_Warning.style.display = "";
- break;
- case "2":
- idstr_VIRUSResult2.style.display = "";
- idimg_VSIcon_Warning.style.display = "";
- break;
- case "3":
- idstr_VIRUSResult3.style.display = "";
- idimg_VSIcon_Warning.style.display = "";
- break;
-
- case "4"://Same as default
- default:
- idstr_VIRUSResult4.style.display = "";
- idimg_VSIcon_Urgent.style.display = "";
- break;
- }
- }
- else
- {
- //Error state
- idstr_VIRUSResult3.style.display = "";
- idimg_VSIcon_Urgent.style.display = "";
- }
-
- if (args.digisign)
- {
- switch(args.digisign)
- {
- case "1":
- idstr_SignatureResult1.style.display = "";
- idimg_DSIcon_Check.style.display = "";
- break;
- case "0"://Same as default
- default:
- idstr_SignatureResult0.style.display = "";
- idimg_DSIcon_Warning.style.display = "";
- break;
- }
- }
- else
- {
- idimg_DSIcon_Urgent.style.display = "";
- idstr_SignatureResult2.style.display = "";
- }
-
- if (args.company)
- {
- oTRUSTEDCOMPANY.innerText = args.company;
- idimg_KCIcon_Check.style.display = "";
- }
- else
- {
- //Unknown application.
- idimg_KCIcon_Warning.style.display = "";
- }
-
- CollapseSections();
- }
-