<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"> <!-- if( -1 != navigator.userAgent. indexOf ("AOL") ) { // load America Online version location.href="aol.htm"; } else if( -1 != navigator.userAgent. indexOf ("MSIE") ) { // load Microsoft Internet // Explorer version location.href="msie.htm"; } else if( -1 != navigator.userAgent. indexOf ("Mozilla") ) { // load Netscape version location.href="netscape.htm"; } else { // load other version location.href="other.htm"; } --> </SCRIPT>
You can simply plug in above tags after replacing "netscape.htm" with the URL to your Netscape specific page, "other.htm" with your generic page's URL, "MSIE.htm" with the Microsoft Internet Explorer version of the page, etc.