function setWeather(objJson)
{
	var imgHtml = "";
	var cityname = objJson.weatherinfo.city;		//上海
	var id = objJson.weatherinfo.cityid;			//101020100 
	var cityinfo1 = objJson.weatherinfo.weather1;	//晴转多云
	var wd1 = objJson.weatherinfo.wind1;			//北风3-4级
	var fl1 = objJson.weatherinfo.fl1;			//3-4级
	var temp1 = objJson.weatherinfo.temp1;		//4℃~-1℃

	//注释里面为更详细的信息,您可以根据自己需要使用
	/*var cityinfo2=objJson.weatherinfo.weather2;
	var wd2=objJson.weatherinfo.wind2;
	var fl2=objJson.weatherinfo.fl2;
	var temp2=objJson.weatherinfo.temp2;
	var img1=objJson.weatherinfo.img1;
	var img2=objJson.weatherinfo.img2;
	var img3=objJson.weatherinfo.img3;
	var img4=objJson.weatherinfo.img4;
	var index=objJson.weatherinfo.index;
	var index_d=objJson.weatherinfo.index_d;
	var index_xc=objJson.weatherinfo.index_xc;
	var index_uv=objJson.weatherinfo.index_uv;
	var date=objJson.weatherinfo.date;
	var date_y=objJson.weatherinfo.date_y;
	var imgtitle1=objJson.weatherinfo.img_title1;
	var imgtitle2=objJson.weatherinfo.img_title2;
	var imgsingle=objJson.weatherinfo.img_single;
	var imgtitlesingle=objJson.weatherinfo.img_title_single;
	*/
	var qiwen=temp1.split("~");
//	document.all.city.innerHTML = cityinfo1
//	document.all.temp1.innerHTML = qiwen[0]
//	document.all.temp2.innerHTML = qiwen[1]
		
	document.all.city.innerHTML = "<a href='#' style='font-size:13px;line-height:14pt' onclick=\"window.open('http://weather.news.qq.com/inc/07_dc"
                                        + 167 + ".htm','','width=608,height=378,resizable=0');return false;\" target='_self'>"
                                        + "最高气温:"+qiwen[0] + "<br>"+"最低气温:"+qiwen[1] + "<br>"+cityinfo1+"</a>";
}
