 <!--
 /* Assign the result of the test to a variable.
    Expected result is either true or false. 
    This test will return true when an AOL browser hits this page. */ 

 var myAgent = (navigator.userAgent.indexOf('Opera') != -1);

 /* Test the variable to see if is true. */ 

   if (myAgent){

 /* When true, redirect the browser to an alternate page 
    or do anything else here. */ 

   location = "indexopera.htm";

  }
// JavaScript Document