/* controller: admin */
/* action:     update_add */
/* file:       admin/updates_list_one_row.tpl */
function j_ajax_POST_admin_update_add(php_file, update_file)
   {
   $.post(php_file, {update_file: update_file}, function(data) 
      {
	  $('.ajax_loader').fadeIn().delay(500).fadeOut(function() {
	     $('div.tabular_data').html(data);  
		 });
	  });
   }



/* controller: admin */
/* action:     update_delete */
/* file:       admin/updates_list_one_row.tpl */
function j_ajax_POST_admin_update_delete(php_file, update_file)
   {
   $.post(php_file, {update_file: update_file}, function(data) 
      {
	  $('.ajax_loader').fadeIn().delay(500).fadeOut(function() {
		 $('div.tabular_data').html(data);  
	     });
	  });
   }



/* controller: admin */
/* action:     news_delete */
/* file:       admin/news_list_rows.tpl */
function j_ajax_POST_admin_news_delete(php_file, item_id)
   {
   $.post(php_file, {item_id: item_id}, function(data) { 
      $('div.tabular_data').html(data);  
      });
   }
