//Opera can spoof other browsers so appName not accurate BUT
//userAgent will always contain the string "Opera"
if (navigator.userAgent.indexOf("Opera")!=-1){window.location="indexop.html"}

//Check for later versions of Netscape (V6 + v7  contain 5 in appVersion property!
if ((navigator.appName=="Netscape") && parseInt(navigator.appVersion)>=5){window.location="indexnn.html"}

if (navigator.plugins.length==0){window.location="indexie.html"} 
