function download_total($filDname,$divid) {          
						  
				var $cou = $("#total_downloads."+$divid+"");
                $.ajax({   
					type: "POST", 
                    url: "modules/file_download_counter/file_download_counter.php",   
                    cache: false, 
				    data: "filename="+$filDname,     //    data: "filename="+$("#username").val(),   
					beforeSend: function() {
					$cou.hide();	
                    },
                    success: function(html){  	
						  $cou.html(html);
						  $cou.show("slow", function () {
						    $(this).animate({  opacity: 1.0}, 2100 )
						    .animate({ opacity: 0.0}, 2100, "linear", 
							function(){ $(this).hide("slow");    } );						 
						  });		
                    }   
                });   
								
				
           
               
}
