APPID = 4007203;
URL = 'http://toshiba.qq.com/';
function qqLogin(nextPage)
{
	if(!checkqqload()){ //qq没有登录，先登录
		openLogin(APPID, nextPage);
	}
	else{
		alert("您已经登录QQ了");
	}
}

function qqLogout(nextPage)
{
     jQuery.cookie("uin",null,{path:"/",domain:"qq.com"});  
     jQuery.cookie("skey",null,{path:"/",domain:"qq.com"}); 
     if(nextPage)
     {
         window.location.href = nextPage;
     }
     if(nextPage=="")
     {
         window.location.reload(true); 
     }
}

function gotoURL()
{
    window.location.href = URL + 'con/page/act/gameone';
}

function userVote(_id)
{
    if(!checkqqload())
    {
        qqLogin();
        return;
    }
    else
    {
        id = _id;
        qq_form_ad(APPID, "", "", "", "", 2, "投票"
                , URL + "con/vote/act/saveAjax", id,true,false,false);
                
        
        return;
        //window.location.href = "http://suning.qq.com/con/user/act/vote?qq=" + jQuery("#searchQq").val();
    }
}