home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 27 / IOPROG_27.ISO / SOFT / ACTIVEB / ACTIVE.ZIP / Setupex.exe / _SETUP.1 / default.js < prev    next >
Encoding:
Text File  |  1999-02-16  |  1.1 KB  |  52 lines

  1.  
  2. var isIE4up
  3. var isNav4up
  4.  
  5. //function main()
  6. //    {
  7.     detectBrowserVer();
  8.  
  9. //    }
  10.  
  11. function detectBrowserVer()
  12.     {
  13.     var agt=navigator.userAgent.toLowerCase();
  14.     isNav4up = ((agt.indexOf('mozilla')!=-1) && ((agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible') == -1))) && (parseInt(navigator.appVersion) == 4);
  15.     isIE4up = (agt.indexOf("msie") != -1) && ( parseInt(navigator.appVersion) == 4);
  16.     }
  17.  
  18. function button_mouseOver(obj)
  19.     {
  20.     if (isIE4up) 
  21.       {
  22.       var obj;
  23.       obj = window.event.srcElement;
  24.       obj.abp_inactive_color = obj.style.color;
  25.       obj.style.color = "red";
  26.         }
  27.     return true;
  28.     }
  29.  
  30. function button_mouseOut(obj)
  31.     {
  32.     if (isIE4up) 
  33.       {
  34.        var obj;
  35.       obj = window.event.srcElement;
  36.       obj.style.color = obj.abp_inactive_color;
  37.         }
  38.     return true;
  39.     }
  40.  
  41. function submit_form_to(method, formName, url, command)
  42.     {
  43.     if (command)
  44.         document.forms[formName].elements["command"].value = command;
  45.  
  46.     if (method != "post" && method != "get")
  47.         method = "post";
  48.     document.forms[formName].method = method;
  49.     document.forms[formName].action = url;
  50.     document.forms[formName].submit();
  51.     }
  52.