if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
	var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
	if (ieversion>=8){
		alert("Internet Explorer "+ieversion+" Compatibility Error!\n\nTo view the Rich Media content you have to change the settings of Internet Explorer 8 Compatibility View to adjust to Advanced Browser Technologies.\n\nPlease click 'OK' to continue ...");
		//IE8 Menu Bar, Click on 'Tools' and choose 'Compatibility View Settings'\nCheck:  'View all web sites in compatibility view'\n
		window.location.href="http://www.scbusa.net/IE8BugFix.htm";
	}
}

