//禁止拷贝，选择，右键，拖动，状态栏。
document.oncontextmenu=new Function("event.returnValue=false;");
document.onselectstart=new Function("event.returnValue=false;");
document.ondragstart=new Function("event.returnValue=false;");

//屏蔽状态栏
function hidestatus(){
 window.status='';
 return true;
 }
 if (document.layers)
 document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT | Event.CLICK)
 document.onmouseover=hidestatus;
 document.onmouseout=hidestatus;
 
//自动转向首页
//if (window == top)top.location.href = "../";  

/*alert(top.location);
var webpath = document.location;
if (top.location != 'http://localhost/17yoo/') 
{
	alert ("你现在访问的是"+ webpath +"\n 检测到你浏览了盗用17yoo的网站，本页即将跳转到正宗17yoo网站页面。\n 请不要使用本站盗用内容。以防您的帐号被盗！");

	//这个比较好,可以转到特定的页面提示一下.
	top.location="http://www.17yoo.com";
}*/

