<!--   // Hide from older browsers

// detecting internet explorer
if ((is_win || is_mac) && is_ie && !is_opera && !is_webtv) {
	// detect Internet Explorer 4.5 on Macintosh
	if (is_ie45) {
		document.location.replace('/global/error/glo_bronotsup.html');
	}
	else if (is_ie4up && !(is_ie45)) {
		
		if (is_flash4) {
			true;
		}
		else {
			true;
		}
	}
	// if none of the above scenarios are detected, send user to this page
	else {
		true;
	}

// detecting Netscape
} else if (is_nav) {

	// detecting Netscape 4.x or higher on PC Windows Platform
	if (is_nav4up && !(is_nav6)) {
		// detect if flash is present	
		if (is_flash4) {
			true;
		}
		else {
			true;
		}
	}
	// detecting Netscape 6.x on PC Windows Platform
	else if (is_nav6) {
		// if none of the above scenarios are detected, send user to this page
		true;
	}
//	// detecting Netscape 3.x on PC Windows Platform
//	else if (is_ns3) {
//		// if none of the above scenarios are detected, send user to this page
//		document.location.replace('/global/error/glo_bronotsup.html');
//	}
	// if none of the above scenarios are detected, send user to this page
	else {
		true;
	}

// detecting Opera
} else if (is_opera) {
	// if none of the above scenarios are detected, send user to this page
	true;

// detecting WebTV
} else if (is_webtv) {
	// if none of the above scenarios are detected, send user to this page
	document.location.replace('/global/error/glo_bronotsup.html');	
	
// if all else fails... go here.
} else {
	// if none of the above scenarios are detected, send user to this page
	true;

}

// -->