Formidable.Classes.CheckBox = Formidable.Classes.RdtBaseClass.extend({
	checkAll: function() {
		var k = 0;
		while((oChk = $(this.config.id + "[" + k + "]")) != null) {
			oChk.checked = true;
			k++;
		}
	},
	checkNone: function() {
		var k = 0;
		while((oChk = $(this.config.id + "[" + k + "]")) != null) {
			oChk.checked = false;
			k++;
		}
	}
});