home *** CD-ROM | disk | FTP | other *** search
/ Adelphia Powerlink / adelphia-powerlink.iso / install / inc / tgctlar.js < prev    next >
Encoding:
Text File  |  2003-02-05  |  1.7 KB  |  49 lines

  1. //**********************************************************************************
  2. //**
  3. //**  File Name: tgcltar.js
  4. //**
  5. //**  Summary: SupportSoft ActionRunner JavaScript File
  6. //**
  7. //**  Description: This file contains global functions and structures used by
  8. //**               serveral pages to help run SupportActions via the ActionRunner.
  9. //**
  10. //**  Copyright SupportSoft Inc. 2003, All rights reserved.
  11. //**
  12. //**********************************************************************************
  13.  
  14. // Action Runner object
  15. document.write('<object classid="CLSID:01111c00-3e00-11d2-8470-0060089874ed" height="0" width="0" id="actionCtl"></object>');
  16.  
  17. //**********************************************************************************
  18. // Constants
  19. //**********************************************************************************
  20. var GLOBAL_SERVER = ssGetServerPath() + "/";
  21. var ACTION_PATH_ROOT = GLOBAL_SERVER + "actions/";
  22.  
  23. //**********************************************************************************
  24. // Functions
  25. //**********************************************************************************
  26.  
  27. //*******************************
  28. // Name:         ssRunAction
  29. // Purpose:      Run a SupportAction
  30. // Parameter:    TAC -- Path to the .tac file for the SupportAction to be run
  31. //*******************************
  32. function ssRunAction(strTac)
  33. {
  34.   var actionPath = ACTION_PATH_ROOT + strTac;
  35.   
  36.   try
  37.   {
  38.     document.actionCtl.SetLocal(true);
  39.     document.actionCtl.Server = GLOBAL_SERVER;
  40.     document.actionCtl.ActionFile = actionPath;
  41.     document.actionCtl.Execute (true, "");
  42.   }
  43.   catch(e)
  44.   {
  45.     alert(e.description);
  46.   }
  47. }
  48.  
  49.