Navigator 3 should skip code within a <SCRIPT LANGUAGE="JavaScript1.2">, but it evaluates the code anyway.
Solution: enclose JS 1.2
statements and function calls within:
if (parseInt(navigator.appVersion)
> 3) { ... }
Example: style.js in this directory.