var sections	= function() {
			
	var setRepeatSections = function(controller, action, index, receiverId, js) {
		
		var url = wwwbase.get() + 'ajax/get_repeat_sections/';
		var pars = 'controller=' + controller + '&action=' + action + '&index=' + index + '&receiverId=' + receiverId + '&js=' + js;
		
		new Ajax.Request( url, { method: 'post', parameters: pars, onComplete: setRepeatSectionsRecieve } );	
		
	};
	
	var setRepeatSectionsRecieve = function(request) {		
		eval("var result = " + request.responseText + ";");
		
		$(result['receiverId']).innerHTML = result['html'];
		
		eval(result['js']);
	};
	
	return {
		setRepeatSections: function(controller, action, index, receiverId, js) {
		
			setRepeatSections(controller, action, index, receiverId, js);	
		}
	};
}();