/* Browser sniffer --
 * This has to be moved to the first script file openned
 * or older browsers will have a fit
 *******************************************************/
userAgent = navigator.userAgent;
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
var isMac=0;var saf=0;
ns = (bName == "Netscape");
ns3 = (bName == "Netscape" && bVer == 3);
ns4 = (bName == "Netscape" && bVer == 4);
ns6 = (bName == "Netscape" && bVer >= 5);
ie3 = (bName == "Microsoft Internet Explorer" && bVer == 3);
ie = (bName == "Microsoft Internet Explorer" && bVer >= 4);
if(userAgent.indexOf('Safari')!= -1){saf = true;}
if(userAgent.indexOf('Mac')!= -1){isMac = true;}
var tmp = location.pathname;
tmp = tmp.substr(tmp.lastIndexOf("/"));
(ie3 || ns3 || ns4)?location.replace('/bracero/old' + tmp):0;


