// This script redirects all browser to our incompatible browsers page
if (is_ie6 || is_ie6up || is_nav71up || is_fx || is_moz || is_cm) {
	//Your good you, your good
} else {
	if (is_win95) {
		//Determine if Windows 95, IE5 is not supported because it cannot take MSXML3
		window.location='incompatible_browser.asp';
	} else {
		if (is_ie5_5) {
			//Do Nothing, will check this in BrowserXMLDetection.js
		} else {
			if (is_nav && is_nav6up == false)
				window.location='incompatible_browser_simple.asp';
			else
				window.location='incompatible_browser.asp';
		}
	}
}