a wrote:
> This page does not display correctly:
> http://www.client.bouygtel.com/forfait.html
> 
> I have no such problem with IE6.

I believe the problem lies in the sites use of JavaScript.  Just looking 
at the first chunk of code they have this:


NS4 = (document.layers);
IE4 = (document.all);
ver4 = (NS4 || IE4);
IE5 = (IE4 && navigator.appVersion.indexOf("5.")!=-1);
isMac = (navigator.appVersion.indexOf("Mac") != -1);
isM = (NS4 || (IE4 && !isMac) || (IE5 && isMac));


Now the first line will fail as there is no document.layers object
The 2nd line will fail as there is no document.all object
Because of the first 2 lines failing to pass their tests the 3rd line 
will fail.
Because the lines above it failed the 4th line will fail.
Since I'm on windows the 5th line will fail.
And since mozilla didn't pass the previous 5 lines of code, the 6th line 
will fail.

I'm sure it just gets worse from there :)


Reply via email to