function getCount(siteId,htmlId)
{
	var urlString = "http://jianzhan.128.com/servlet/CS?action=get&id=" + siteId + "&jsoncallback=?";
		$.getJSON(
	  	    urlString,
	      function(data){
	      $(htmlId).html(data.count);
	     });
	
	
}

function DrawImg(imgId,boxWidth,boxHeight)
{
　　　 var imgWidth=$(imgId).width();
　　　 var imgHeight=$(imgId).height();


	  if ( imgWidth < boxWidth && imgHeight < boxHeight ){
	  		return;
	  	}


　　　 //比较imgBox的长宽比与img的长宽比大小
　　　 if((boxWidth/boxHeight)>=(imgWidth/imgHeight))
　　　 {
　　　　　　　 //重新设置img的width和height
　　　　　　　 $(imgId).width((boxHeight*imgWidth)/imgHeight);
　　　　　　　 $(imgId).height(boxHeight);
　　　　　　　 //让图片居中显示
　　　　　　　 var margin=(boxWidth-$(imgId).width())/2;
　　　　　　　 $(imgId).css("margin-left",margin);
　　　 }
　　　 else
　　　 {
　　　　　　　 //重新设置img的width和height
　　　　　　　 $(imgId).width(boxWidth);
　　　　　　　 $(imgId).height((boxWidth*imgHeight)/imgWidth);
　　　　　　　 //让图片居中显示
　　　　　　　 var margin=(boxHeight-$(imgId).height())/2;
　　　　　　　 $(imgId).css("margin-top",margin);
　　　 }
}