<!--- Redirection en fonction du navigateur et de sa version
var vers=parseFloat(navigator.appVersion);
if (navigator.appName=="Netscape") {
 if (vers>0 && vers<=1) {top.location.href="nn1.htm";}
 if (vers>1 && vers<=2) {top.location.href="nn2.htm";}
 if (vers>2 && vers<=3) {top.location.href="nn3.htm";}
 if (vers>3 && vers<=4) {top.location.href="nn4.htm";}
 if (vers>4) {top.location.href="nn5.htm";}
}
else {
 if (vers>0 && vers<=1) {top.location.href="ie1.htm";}
 if (vers>1 && vers<=2) {top.location.href="ie2.htm";}
 if (vers>2 && vers<=3) {top.location.href="ie3.htm";}
 if (vers>3 && vers<=4) {top.location.href="ie4.htm";}
 if (vers>4) {top.location.href="ie5.htm";}
}
//  --->


