//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="http://www.pocketropolis.co.uk/blog/blogger.html"}

//Check for later versions of Netscape (V6 + v7  contain 5 in appVersion property!
if ((navigator.appName=="Netscape") && parseInt(navigator.appVersion)>=5){window.location="http://www.pocketropolis.co.uk/blog/blogger.html"}

if (navigator.plugins.length==0){window.location="http://www.pocketropolis.co.uk/blog/blogger.html"} 

