}
$i = 0;
-$jscript .= "
+$jscript .= q{
// Only display versions/components valid for selected product(s)
function selectProduct(f) {
+ // Apparently, IE4 chokes on the below, so do nothing if running that.
+ var agt=navigator.userAgent.toLowerCase();
+ if ((agt.indexOf("msie") != -1) &&
+ (parseInt(navigator.appVersion) == 4)) return;
+
var cnt = 0;
var i;
var j;
}
// -->
-</script>\n";
+</script>
+
+};