function cancelEditor(_cid){
	$('#notify_content').html("Are you sure you wish to cancel your Editor Status for this club?");
	modal_base.init("error", "Cancel Editor Status", "#notification", "Confirm", cancelEditNow, arguments );
}

function cancelEditNow(){
	var _cid 	= arguments[0][0];
	$.ajax({
		type: 	'POST',
		url: 	'scripts.php?script=clubModRemove',
		data:	'cid='+_cid,
		success: function(html){
			location.href=location.href;
		}
	});
}
