function wono( _url )
{
/*
	// 防止看到标题栏（显示了真实的URL）, 此处无效!!!
	var _left = 80;
	var _titleHeight = 10;
	// self.moveTo( -4 + _left, -4 - _titleHeight );
	// self.resizeTo( screen.availWidth+8 - 2*_left , screen.availHeight + 8 );
	var xleft = -4 + _left ;
	var xtop = -4 - _titleHeight ;
	var xwidth = screen.availWidth + 8 - 2*_left ;
	var xheight = screen.availHeight + 8 + _titleHeight ;
	
	window.open(_url,'','scrollbars=yes,fullscreen=no,toolbar=no,status=yes,menubar=no,resizable=yes'+
	  ',width='+ xwidth +',height='+ xheight +',left='+ xleft +',top='+ xtop +'' );
*/

	// window.open(_url,'','scrollbars=yes,fullscreen=no,toolbar=no,status=yes,menubar=no,resizable=yes');

	window.open(_url,'','scrollbars=yes,fullscreen=no,toolbar=no,status=yes,menubar=no,resizable=yes'+
	  ',width=100,height=100,left=2000,top=2000');

}

	// onKeyDown，无法分辨大小写;  但onKeyPress无法响应"Ctrl + 9"等
	function document.onkeydown() 
	{	
		// Ctrl + 9 进入后台管理
		if( (event.ctrlKey) && (event.keyCode == 57 )) // Ctrl + 0 // '9' = 57 // '0' = 48
		/*
		if( location.href.indexOf("v21_index.jsp") >=0
		      ||
		    location.href.indexOf("v21_member_index.jsp") >=0
		      ||
		    location.href.indexOf("v21_team_index_A.jsp") >=0
		  ) // 各首页才激发
		*/  
		{
		  // alert("asdfasd");
		  // alert(" Ctrl + " + String.fromCharCode(cc) );
		  // window.open('cnmw_admin_login.jsp');
		  // window.open('cnmw_admin_list.jsp');

if( location.host.indexOf('127.0.0.1') >=0 || location.host.indexOf('localhost') >=0 )
  window.open('cnmw_admin_list.jsp');
		  
		  
		}  
	}
