Other.html 869 B

1234567891011121314151617181920212223242526272829303132333435
  1. <html>
  2. <head>
  3. <title></title>
  4. </head>
  5. <body>
  6. <br />
  7. <div style="width:100%; text-align:center; font-family:Arial; font-size:12px;" id=other></div>
  8. <br />
  9. <div style="width:100%; text-align:center; font-family:Arial; font-size:12px;">
  10. <button onclick="parent.window.close();">
  11. Close
  12. </button>
  13. </div>
  14. <SCRIPT src="axurerp_pagescript.js"></SCRIPT>
  15. <script language=javascript>
  16. function getQueryVariable(variable) {
  17. var query = window.location.hash.substring(1);
  18. var vars = query.split("&&&");
  19. for (var i=0;i<vars.length;i++) {
  20. var pair = vars[i].split("=");
  21. if (pair[0] == variable) {
  22. return decodeURI(pair[1]);
  23. }
  24. }
  25. }
  26. var other = document.getElementById('other');
  27. other.innerHTML = getQueryVariable('other');
  28. </script>
  29. </body>
  30. </html>