//QQ登录

$("#qzone-connect,button[name='qzone-connect']").click(function(){
	   
	   toQzoneLogin();
	   
	   return false;
});

function toQzoneLogin(){
	
	jNotify('如果没有出现登陆窗口，可能已经在浏览器旁边的标签出现了',
	          {
				  HorizontalPosition : "right",     // 水平位置:left, center, right 
                  VerticalPosition : "bottom",     // 垂直位置：top, center, bottom )
				  TimeShown:10000
	});
	jumpToQzoneLogin();
	var url = '/Public/Record/qqLogin';
	$.get(url);
	return false;
}
function jumpToQzoneLogin(){var A=window.open('/Public/Login/oauth_redirect_login',"TencentLogin","width=450,height=320,menubar=0,scrollbars=1, resizable=1,status=1,titlebar=0,toolbar=0,location=1");}

