function organize(uid){
	var	ran		=	Math.random();
	$.post(APP+'/Public/organize',{ran:ran,uid:uid},function(flid){
    if(flid=='0'){
        alert('您还没有建立圈子，不能发布活动！');
	}else if(flid=='2'){
		alert('您的圈子圈内人数没有到达10人，不能发布活动！');
	}else{
		window.location.href="http://qcjlb.9hy.net/index.php/Active/organize";
	}	
	});		
}

function checkradio(){
	var bool_car = $("#div_radio input[@type=radio][@checked]").val(); 
	if(bool_car == 1){
		$("#safety").show();
	}else{
		$("#safety").hide();
	}
}
