// 
// BROWSER DETECTION WITH ALERT AND REDIRECT
// FIREFOX ALERT ONLY
// NETSCAPE, WEB TV AND OPERA ALERT AND REDIRECT
// THIS SCRIPT WRITTEN BY JIM STILES
// WWW.JDSTILES.COM

if (navigator.userAgent.indexOf("Firefox")!=-1)
 alert("This script may not be compatable with FireFox.")

 if(navigator.appName == "WebTV")
{
 alert("This script may not be compatable with WebTV.")
}
if (navigator.userAgent.indexOf("Netscape")!=-1)
{
 alert("You need Firefox, Opera or MSIE to view this script.");
 window.location = "http://jdstiles.com/java/ns.html"
}

if (navigator.userAgent.indexOf("Opera")!=-1)
 alert("This script may not be compatable with Opera.")
}
