// browvers.js // Release 1.0.1 // Copyright © 2002, 2003 Oracle. All rights reserved. var browser=navigator.userAgent.toLowerCase(); var ie5p = (browser.indexOf("msie 5.0")!=-1); var ie5_5p = (browser.indexOf("msie 5.5")!=-1); var ie6_0p = (browser.indexOf("msie 6.0")!=-1); if (ie5_5p || ie5p || ie6_0p) { // You can use the following line to test that the JavaScript works. // // document.write('
This browser is IE5.0, IE5.5 or IE6.0
') // document.write('') } // -->