123456789101112131415161718192021 |
- /*
- Licensed Materials - Property of IBM
- IBM Cognos Products: DOCS
- © Copyright IBM Corp. 1999, 2012.
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- function checkHelpID( helpID ) {
- var helpIDtopic = new Array();
- helpIDtopic["72224"] = "ig_crn_sdkcd_c_upgradingthesdksoftware.html";
- helpIDtopic["48671"] = "ig_crn_sdkcd_t_installingandconfiguringthesdk.html";
- helpIDtopic["62886"] = "ig_crn_sdkcd_t_uninstallthesdk.html";
- if( helpIDtopic[helpID] )
- return helpIDtopic[helpID];
- else
- return "";
- }
|