Anyways it's not that good to use JavaScript for checking browser versions, if you could use $HTTP_SERVER_VARS/$_SERVER["HTTP_USER_AGENT"] in PHP.
var IE4 = ((document.all) || (parseInt(navigator.appVersion)>=4)) ? 1 : 0;
modifies the JS and makes it possible to get Mozilla working with the $Ver = 'H' version. I see no problems but honestly I haven't tested it as I should yet...
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I tried to figure out where $Ver is set, but I just can't find it, so anyone could help me?
I want to modify the if expression to get my Mozilla work with $Ver = 'H'.
Done! ;-)
Anyways it's not that good to use JavaScript for checking browser versions, if you could use $HTTP_SERVER_VARS/$_SERVER["HTTP_USER_AGENT"] in PHP.
var IE4 = ((document.all) || (parseInt(navigator.appVersion)>=4)) ? 1 : 0;
modifies the JS and makes it possible to get Mozilla working with the $Ver = 'H' version. I see no problems but honestly I haven't tested it as I should yet...
There are several problems occuring, though it seems working properly.
So it's not as easy as that ;-)