blankSubscriptionWin.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE HTML>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: Viewer
  5. (C) Copyright IBM Corp. 2001, 2015
  6. US Government Users Restricted Rights - Use, duplication or
  7. disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  8. -->
  9. <html lang="en">
  10. <head>
  11. <title>Blank</title>
  12. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  13. <meta name="Copyright" content="(C) Copyright IBM Corporation and its licensors 2001, 2015.">
  14. <meta name="Trademark" content="IBM, the IBM logo, and Cognos are trademarks of IBM Corp., registered in many jurisdictions worldwide.">
  15. <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
  16. <link id="rvReportCSS" href="../skins/corporate/qs/RVReport.css" rel="stylesheet" type="text/css"/>
  17. <script type="text/javascript">
  18. //<!--
  19. var sSkin = "../skins/corporate";
  20. var sCVId = "";
  21. /* figure out the skin folder */
  22. var sLocation = document.location.search;
  23. if (sLocation.match(/\bcv\.id=([^&?]*)/))
  24. {
  25. sCVId = RegExp.$1;
  26. }
  27. function resubmit()
  28. {
  29. if (window.history.length > 1) {
  30. window.history.go(+1);
  31. }
  32. else
  33. {
  34. var BUSY_LINE_1 = document.getElementById("BUSY_LINE_1");
  35. while (BUSY_LINE_1.hasChildNodes())
  36. {
  37. BUSY_LINE_1.removeChild(BUSY_LINE_1.firstChild);
  38. }
  39. try
  40. {
  41. var oCognosViewerObject = window.opener["oCV" + sCVId];
  42. BUSY_LINE_1.appendChild(document.createTextNode(oCognosViewerObject.getString("RV_PLEASE_WAIT")));
  43. }
  44. catch(e)
  45. {
  46. }
  47. var subscriptionForm = self.opener.document.getElementById("subscriptionForm");
  48. if(subscriptionForm)
  49. {
  50. subscriptionForm.submit();
  51. }
  52. else
  53. {
  54. window.close();
  55. }
  56. }
  57. }
  58. //-->
  59. </script>
  60. </head>
  61. <body style="background-color: #FFFFFF;" onload="resubmit();">
  62. <table cellspacing="0" cellpadding="0" width="100%" height="100%" align="left" onload="resubmit();">
  63. <tr valign="top">
  64. <td>
  65. <span id="BUSY_LINE_1" class="busyUpdatingStr"></span>
  66. </td>
  67. </tr>
  68. </table>
  69. </body>
  70. </html>