ca ok, mais apres comment je peux lui indiquer que tel navigateur ira vers telle page?
moi ce que je voudrais c'est ca :ss
<SCRIPT>ss
function Navigateur(){ss
if (navigator.appName.indexOf("Netscape" ) > -1) {return "Netscape";}ss
if (navigator.appName.indexOf("Explorer" ) > -1) {return "Explorer";}ss
return "Unknown";}ss
if (navigator.appName.indexOf("Netscape" ) > -1)ss
then { parent.location.href='1.htm';}
if (navigator.appName.indexOf("Explorer" ) > -1)ss
then{ parent.location.href='2.htm';}
else { parent.location.href='3.htm';}
</SCRIPT>
c'est possible?