
function getUpdatesCounts(url) {
	
	var mode = 'getcounts';
	jQuery.post(url+"ajax/getUpdatesCounts.php",{  
		 mode: mode
	   }, function(xml) {	alert(xml);
			
			var arrResults = xml.split('#~~#');
			//jQuery("#tw_link_count").html(arrResults[0]);	
			//jQuery("#face_link_count").html(arrResults[1]);	
			//jQuery("#myspace_link_count").html(arrResults[2]);	
			
			return false;  
		   
	}); 
	
}

