// JavaScript Document
function gotovote(vuid, url){
	$.post('index.php?flag=keer_vote&vuid='+vuid,function(obj){
		if(obj){
			if(obj.search("成功")>0){
				alert(obj);
				location.href=url;
			}else{
				alert(obj);
			}
		}else{
			alert("通讯失败，请检查网络");
		}
	});
}
