function CookieEnable(){
	var result=false; 
	if(navigator.cookiesEnabled)
		return true; 
	document.cookie = "testcookie=yes;"; 
	var cookieSet = document.cookie; 
	if (cookieSet.indexOf("testcookie=yes") > -1) 
		result=true; 
	document.cookie = ""; 
	return result; 
} 
if(!CookieEnable()){ 
	document.write('<div style="margin:auto;width:960px;border:1px dotted #FF3300;background:#FFFFCC;padding:8px 8px 0 8px;height:20px;"><a href="/FAQ/?id=260">由于您的浏览器安全设置的过高，可能无法成功登陆本站。请点这里查看如何安全方便的解决这个问题。</a></div>');
} 

if (top.location != self.location)top.location=self.location