
| <SCRIPT>
var bName = navigator.appName; // "n3"
is short for Netscape 3.x or greater or JavaScript 1.1 or greater bName (browser Name) & bVer (browser Version) gives us enough information to decide what the browsers are capable of based on the information we just gathered. if (br == "n3") { //
this should look a lot like document.images for example document.write("Browser
Name is " + bName + "<BR>"); document.write("var
bName is " + bName + "<BR>"); </SCRIPT> |