var URLString=new String(document.location);
if (URLString.length>80)
{
window.alert("含有非法字符当前页面即将关闭！");
window.opener = null;
window.open('', '_self', '');
window.close();
};
