Wolf_22 0 Newbie Poster
<html>
<head>
<title></title>
<script>
if(navigator.userAgent.indexOf("Firefox") != -1)
{
   window.location = "secondLayer/indexFF.htm";
}
else if(navigator.userAgent.indexOf("MSIE") != -1)
{
   window.location = "secondLayer/indexIE.htm";
}
else if(navigator.userAgent.indexOf("Netscape") != -1)
{
   window.location = "secondLayer/indexNS.htm";
}
else
{
   window.location = "secondLayer/indexX.htm";
}
</script>
</head>
<body>
	<p>Please wait while the browser redirects you...</p>
</body>
</html>

Can I just copy and past an "else if" into this like the others and pass off the value "Opera" and have it be redirected???