help.js 877 B

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