<!--
if (window.navigator.userAgent.indexOf("MSIE")>=1)
{
	//如果浏览器为IE
	//setActiveStyleSheet("default.css");
}
else
{
	if (window.navigator.userAgent.indexOf("Firefox")>=1)
	{
		//如果浏览器为Firefox
		//alert("您现在使用的浏览器为：Firefox    由于兼容性问题，请使用IE。");
		alert("The browser you use is Firefox.  Because of compatibility, please use IE.");
		location.href="javascript:window.close()";
	}
	else
	{
		//如果浏览器为其他
		//alert("您现在使用的浏览器不是IE    由于兼容性问题，请使用IE。");
		alert("The browser you use is not IE. Because of compatibility, please use IE.");
		location.href="javascript:window.close()";
	}
}
//-->


