function atten_ajax()
{
	$.ajax({ //一个Ajax过程  
   		type: "post",  //以post方式与后台沟通
   		url : "mobile_more.php", //与此php页面沟通
   		dataType:'json',//从php返回的值以 JSON方式 解释
   		data:  'action=ajax_atten', //发给php的数据有两项，分别是上面传来的u和p   
   		success: function(json)
		{
			document.getElementById("mobilelist").innerHTML=json.htmllist;
			document.getElementById("mobiletop").innerHTML=json.html;
        },
		error:function()
		{alert('数据返回有错');}
      });
	 document.getElementById("mobilelist").innerHTML='<img src="../templates/default/mcool/images/addload.gif">&nbsp;数据加载中....';
}
function new_ajax()
{
	$.ajax({ //一个Ajax过程  
   		type: "post",  //以post方式与后台沟通
   		url : "mobile_more.php", //与此php页面沟通
   		dataType:'json',//从php返回的值以 JSON方式 解释
   		data:  'action=ajax_new', //发给php的数据有两项，分别是上面传来的u和p   
   		success: function(json)
		{
				document.getElementById("mobilelist").innerHTML=json.htmllist;
			document.getElementById("mobiletop").innerHTML=json.html;
        },
		error:function()
		{alert('数据返回有错');}
      });
	 document.getElementById("mobilelist").innerHTML='<img src="../templates/default/mcool/images/addload.gif">&nbsp;数据加载中....';
}