calendarbottom.html.svn-base 773 B

1234567891011121314151617181920212223242526272829303132
  1. <!-- saved from url=(0017)http://localhost/ -->
  2. <html>
  3. <head>
  4. <meta http-equiv=content-type content="text/html; charset=utf-8">
  5. </head>
  6. <body>
  7. <script language="javascript">
  8. function setHtml()
  9. {
  10. try
  11. {
  12. document.write(parent.parent.opener.calDocBottom);
  13. }
  14. catch (e)
  15. {
  16. if (e.number == -2147418111)
  17. {
  18. // this is a 'Call was rejected by callee' exception
  19. // which indicates that OLE Automation timed-out when
  20. // waiting for a response from the process that spawned
  21. // this window. The process is probably busy so delay
  22. // delay a bit, then try again.
  23. setTimeout("setHtml();", 50);
  24. }
  25. }
  26. }
  27. setHtml();
  28. </script>
  29. </body>
  30. </html>