Most scripts use the navigator Object and the appName attribute to retrieve information about the browser, but there is a simpler way of doing this.
use:
if(document.layers) { //test for netscape
location.href="netscape.htm";
}
if(document.all) { //test for MSIE
location.href="ie.htm";
}
Java Guy
http://www.reprisal.co.uk<font face="Verdana,Arial,Helvetica,Sans-serif" size=-1 color=#ff0000>Edited by java_guy19 on Tue Mar 14 15:28 2000</font>