
// BROWSER DETECTION WITH ALERT AND REDIRECT
// FIREFOX ALERT ONLY
// NETSCAPE, WEB TV AND OPERA ALERT AND REDIRECT
// THIS SCRIPT WRITTEN BY CRAFTYFOX
// WWW.CRAFTYSTOX.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 or Internet Explorer to view this script.");
 window.location = "http://www.craftystox.com/index.asp"
}

if (navigator.userAgent.indexOf("Opera")!=-1)
{
 alert("You need Firefox or Internet Explorer to view this script.");
 window.location = "http://www.craftystox.com/index.asp"
}
