
	var tpWeather;
	function change(tentp,nhietdo,anh,thoitiet,doam,gio)
	{
	document.getElementById("ttNhietDo").innerHTML=nhietdo;
	document.getElementById("ttAnh").innerHTML='<img src="http://www.zing.vn/news/images/weather/'+anh+'" />';
	document.getElementById("ttThoitiet").innerHTML=thoitiet+'<br />Độ ẩm: '+doam+'<br />'+gio;
	}
	function ShowWeatherBox(intVal)
	{
	change(weather[intVal][1],weather[intVal][2],weather[intVal][3],weather[intVal][4],weather[intVal][5],weather[intVal][6],weather[intVal][7],weather[intVal][8],weather[intVal][9]);
	}
	function ShowWeather()
	{
	var strcboWeather='';
	for(var i=0;i<weather.length;i++)
	{
	if(weather[i][0]=='t-p-ha-noi')tpWeather=i;
	strcboWeather+='<option value="'+i+'"'+(weather[i][0]=='t-p-ha-noi'?' selected="selected"':'')+'>'+weather[i][1]+'</option>';
	}
	//document.getElementById("cboWeather").innerHTML= strcboWeather;
	};
