/*
 * cross-browser.js
 * cross out the "great" IE browser
 */


function isIE(){
	var ver = navigator.userAgent;
	//alert(ver.toLowerCase());
	return (ver.toLowerCase().indexOf("msie") > -1);
	
}

function cross_browser(){

	if (isIE()){

		location.href="http://cebi.asia/cross-browser.htm";
	}
}
