blankDrillWin.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.close();
  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 drillform = self.opener.document.getElementById("drillForm");
  48. if(drillform)
  49. {
  50. drillform.submit();
  51. }
  52. else
  53. {
  54. var gotoForm = self.opener.document.getElementById("gotoPage");
  55. if(gotoForm)
  56. {
  57. gotoForm.submit();
  58. }
  59. }
  60. }
  61. //Focus on the window, to have the window pop to the foreground in IE8+
  62. window.focus();
  63. }
  64. //-->
  65. </script>
  66. </head>
  67. <body style="background-color: #FFFFFF;" onload="resubmit();">
  68. <table cellspacing="0" cellpadding="0" width="100%" height="100%" align="left" onload="resubmit();">
  69. <tr valign="top">
  70. <td>
  71. <span id="BUSY_LINE_1" class="busyUpdatingStr"></span>
  72. </td>
  73. </tr>
  74. </table>
  75. </body>
  76. </html>