I have this code in two different applications, it's supposed to hide a "Processing Request, Please Wait..." message.
VB Code:
  1. <script>
  2.    function hideObject(obj)
  3.    {
  4.       if (ns4)
  5.       {
  6.          obj.visibility = "hide";
  7.       }
  8.       if (ie4 || upLevel)
  9.       {
  10.          obj.style.visibility = "hidden";
  11.       }
  12.    }
  13. </script>
  14. <body onload="hideObject(Processing);">
It works in one application, but not in another. I've tried putting an alert in the hideObject function in both applications, but it still only works in one application. Am I missing a setting or something??

This is driving me nuts.