home *** CD-ROM | disk | FTP | other *** search
- //**********************************************************************************
- //**
- //** File Name: tgcltar.js
- //**
- //** Summary: SupportSoft ActionRunner JavaScript File
- //**
- //** Description: This file contains global functions and structures used by
- //** serveral pages to help run SupportActions via the ActionRunner.
- //**
- //** Copyright SupportSoft Inc. 2003, All rights reserved.
- //**
- //**********************************************************************************
-
- // Action Runner object
- document.write('<object classid="CLSID:01111c00-3e00-11d2-8470-0060089874ed" height="0" width="0" id="actionCtl"></object>');
-
- //**********************************************************************************
- // Constants
- //**********************************************************************************
- var GLOBAL_SERVER = ssGetServerPath() + "/";
- var ACTION_PATH_ROOT = GLOBAL_SERVER + "actions/";
-
- //**********************************************************************************
- // Functions
- //**********************************************************************************
-
- //*******************************
- // Name: ssRunAction
- // Purpose: Run a SupportAction
- // Parameter: TAC -- Path to the .tac file for the SupportAction to be run
- //*******************************
- function ssRunAction(strTac)
- {
- var actionPath = ACTION_PATH_ROOT + strTac;
-
- try
- {
- document.actionCtl.SetLocal(true);
- document.actionCtl.Server = GLOBAL_SERVER;
- document.actionCtl.ActionFile = actionPath;
- document.actionCtl.Execute (true, "");
- }
- catch(e)
- {
- alert(e.description);
- }
- }
-
-