  
// Browser Redirect Code
var browserName = navigator.appName;
  if (browserName == 'Microsoft Internet Explorer'){
     var offset = navigator.userAgent.indexOf('MSIE');
     var token  = navigator.userAgent.substr(offset, 8);
     var ver    = parseFloat(token.substr(5, token.length));
     if (ver < 4.0){
document.location.replace('/Global/content.nsf/International/Redirect');
     }else{
     }
  }else{
     if (browserName == 'Netscape'){
         var offset = navigator.userAgent.indexOf('Mozilla');
        var token  = navigator.userAgent.substring(offset, 11);
        var ver    = parseFloat(token.substring(8, token.length));
if (ver < 5.0){
            document.location.replace('/Global/content.nsf/International/Redirect');
        }else{
        }
     }else{  //any other server
        if (!document.getElementById){
          document.location.replace('/Global/content.nsf/International/Redirect');
        }else{
       }
     }
  }

// Domain Redirect Code
var Loc = document.location.href;
var hos = document.location.host;
var hosindex = hos.indexOf("www");
if ((GCRDom != hos) && (hosindex != -1))
     {
var nLoc = Loc.replace(hos,GCRDom);
document.location.href = nLoc; 
      }
function NewWindow(mypage, myname, w, h, scroll)   
{  var winl = (screen.width - w) / 2;  
var wint = (screen.height - h) / 2;  
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable,location=yes,toolbar=yes'  
win = window.open(mypage, myname, winprops)      
if (parseInt(navigator.appVersion) >= 4)      
{        
win.window.focus();        
}  
}
