/*
 ______________________________________________________
/ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ\
|          Another JavaScript from Uncle Jim           |
|                                                      |
|   Feel free to copy, use and change this script as   |
|        long as this part remains unchanged.          |
|                                                      |
|      Visit my website at http://www.jdstiles.com     |
|           for more scripts like this one             |
|                                                      |
|                     Created: 1996                    |
|              Last Updated: December, 2005            |
\______________________________________________________/
 ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ
*/
// BROWSER DETECTION WITH ALERT AND REDIRECT
// FIREFOX ALERT ONLY
// NETSCAPE, WEB TV AND OPERA ALERT AND REDIRECT

if (navigator.userAgent.indexOf("Firefox")!=-1)
 alert("Portions of this website may not be compatible with FireFox.")

 if(navigator.appName == "WebTV")
{
 alert("Portions of this website may not be compatible with WebTV.")
}
if (navigator.userAgent.indexOf("Netscape")!=-1)
{
 alert("You need Firefox or Internet Explorer to view this website.");
 window.location = "http://jdstiles.com/java/ns.html"
}

if (navigator.userAgent.indexOf("Opera")!=-1)
{
 alert("You need Firefox or Internet Explorer to view this website.");
 window.location = "http://jdstiles.com/java/ns.html"
}
