jQuery(document).ready(function(){
	jQuery('input#bt_subscribe').click(function(){
		var frm = jQuery(this).parents('form:first');
		show_message('Обработка данных');
		if (Validate(frm)) {
			jQuery.ajax({
				type: "POST",
				url: "/_admincp/__new/Modules/subscribe/_ajax/add.php",
				data: frm.serialize(),
				success: function(msg){
					close_message();
					frm.html(msg);					
				}
			});
		}
	});
	
	jQuery('a#mass_send').click(function(){
		show_message('Идёт рассылка');
		var a = jQuery(this);
		jQuery.ajax({
			type: "POST",
			url: "/_admincp/__new/Modules/subscribe/_ajax/send.php",
			data: a.attr('rel'),
			success: function(msg){
				window.location.reload();
			}
		});
	});
});
