// Browser Detection Javascript
// copyright 1 February 2003, by Stephen Chapman, Felgall Pty Ltd

// You have permission to copy and use this javascript provided that
// the content of the script is not changed in any way.

function whichBrs() {
var agt=navigator.userAgent.toLowerCase();
if (agt.indexOf("opera") != -1)
{
	window.location = "index_ie.htm";
}
if (agt.indexOf("chrome") != -1)
{
	window.location = "index_cr.htm";
}
if (agt.indexOf("firefox") != -1) 
{
	window.location="index_cr.htm";
}
if (agt.indexOf("safari") != -1) 
{
	window.location="index_cr.htm";
}
if (agt.indexOf("msie") != -1) 
{
window.location = "index_ie.htm";
}
if (agt.indexOf("netscape") != -1) 
{
	window.location="index_cr.htm";
}
if (agt.indexOf("mozilla/5.0") != -1)
{
	window.location="index_cr.htm";
}
if (agt.indexOf('\/') != -1) {
if (agt.substr(0,agt.indexOf('\/')) != 'mozilla') {
return navigator.userAgent.substr(0,agt.indexOf('\/'));}
else return 'Netscape';} else if (agt.indexOf(' ') != -1)
return navigator.userAgent.substr(0,agt.indexOf(' '));
else return navigator.userAgent;
}
var browserName = whichBrs();
document.write('<p><B>Browser Detected :<u>'+browserName+'</u></b></p>');
function delayer(){
    window.location = "browser_detect.htm"
}