/* CODEDATE $Workfile: rxBrowser.js $ ** $Revision: 5 $ ** $Date: 2/19/02 10:21a $  */
/* Copyright (C) - 2003 - Fidelity National Information Solutions */
goodBrowser();
forceURLCase();
function goodBrowser()
{
var s = window.navigator.appVersion;
var iMSIE = s.indexOf('MSIE');
if (iMSIE < 0 || s.substring(iMSIE+5,s.length-1) < '5.5')
window.location.href='http://support.rexplorer.net/rex2xsupport/rex211/browser/rexInsBrowser.htm';
}
function forceURLCase()
{
var sURL = window.location.href;
var iFile=sURL.lastIndexOf('/');
var sFile = sURL.substring(iFile,sURL.length);
var sPath = sURL.substring(0,iFile);
var sPathLower = sPath.toLowerCase();
if (sPath != sPathLower)
window.location.replace(sPathLower+sFile);
}
