// JavaScript Document


if (window!=top) // 判断当前的window对象是否是top对象
{
	alert("为了安全，请直接从通过地淘网址访问地淘网！\n系统检测到您不是直接通过地淘网址访问，可能的原因是被宽带接入商通过路由器加入广告！\n如果您访问许多网站都会出现此类相同广告，建议向当地通信管理局投诉宽带接入商！");
	
		alert("地淘本身永久不会加入弹窗广告和强制用户点击的广告！");
	
	window.open(window.self.document.location,"_blank","top=0,left=0,status=yes,toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
	
	window.top.location=window.self.document.location;
}
