home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2000 October / tst.iso / multimed / IDN / web / mixup / include / status_jscript.asp < prev   
Encoding:
Text File  |  1999-07-16  |  566 b   |  23 lines

  1. <SCRIPT LANGUAGE="JavaScript">
  2. <!-- hide this script from non-javascript-enabled browsers
  3.  
  4. // function that displays status bar message
  5.  
  6. function dm(msgStr) {
  7.   document.returnValue = false;
  8.   if (document.images) { 
  9.      window.status = msgStr;
  10.      document.returnValue = true;
  11.   }
  12. }
  13. var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";
  14. function dmim(msgStr) {
  15.   document.returnValue = false;
  16.   if (showMsg) { 
  17.     window.status = msgStr;
  18.     document.returnValue = true;
  19.   }
  20. }
  21.  
  22. // stop hiding -->
  23. </SCRIPT>