// JavaScript Document
CheckBrowser();
function CheckBrowser(){
    var cb = "Unknown";
	
    if(window.ActiveXObject){
        cb = "IE";		
    }else if(navigator.userAgent.toLowerCase().indexOf("firefox") != -1){
        cb = "Firefox";
		alert("您现在使用的浏览器类型是："+cb+"！可能影响访问\n建议您使用微软IE浏览器");
		return false;
    }else if((typeof document.implementation != "undefined") && (typeof document.implementation.createDocument != "undefined") && (typeof HTMLDocument != "undefined")){
        cb = "Mozilla";
		alert("您现在使用的浏览器类型是："+cb+"！可能影响访问\n建议您使用微软IE浏览器");
		return false;
    }else if(navigator.userAgent.toLowerCase().indexOf("opera") != -1){
        cb = "Opera";
		alert("您现在使用的浏览器类型是："+cb+"！可能影响访问\n建议您使用微软IE浏览器");
			return false;
    }
	if(cb=="Unknown"){
	alert("您现在使用的浏览器类型可能影响访问!\n建议您使用微软IE浏览器");
	}	
    
}
function OpenWindows(url){
aa=window.open(url,"shopperinfo","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=850,height=650,status=yes,resizable=yes,left=0,top=0");
}
