1234567891011121314151617181920212223242526 |
- // Licensed Materials - Property of IBM
- //
- // IBM Cognos Products: pps
- //
- // (C) Copyright IBM Corp. 2005, 2017
- //
- // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- // This forms the javascript functions used for the Banner of
- // PowerPlay Studio 8.3.
- // The functions wrap the C8 help system for PPES Help
- function help(lang, sTopic) {
- var helpFilePrefix = "http://www.ibm.com/support/knowledgecenter/"; //The PPES Help url, now hosted on IBM Knowledge Center.
- var helpFileSuffix = "SSEP7J_11.0.0/com.ibm.swg.ba.cognos.pwr_ppweb.doc/";
- var _helpTopic = "c_ppstudio_intro.html";
- var _lang = "";
- lang = lang ? lang : _lang;
- sTopic = sTopic ? sTopic : _helpTopic;
- var helpFileFullURL = helpFilePrefix + helpFileSuffix + _helpTopic;
- openHelp(helpFileFullURL);
- }
|