function ShowWeather()
{
	function AddCityWeather(City, Degree)
	{
		document.writeln('<tr bgcolor="#e2e2e2"><td class="titl">&nbsp;', Trim(City) , '</font></td><td class="titl" align=right>', Trim(Degree), '&nbsp;&#110;&nbsp;</td></tr>');
	}

	if (!AddHeader('THỜI TIẾT', 'THỜI TIẾT', 3, PageHost.concat('images/i_Weather.gif')))
	return;

	if (typeof(vHanoi)!='undefined'     && typeof(dHanoi)    !='undefined') AddCityWeather("Ha Noi", dHanoi);
	if (typeof(vHaiPhong)!='undefined'  && typeof(dHaiPhong) !='undefined') AddCityWeather("HaiPhong", dHaiPhong);
	if (typeof(vDaNang)!='undefined'    && typeof(dDaNang)   !='undefined') AddCityWeather("DaNang", dDaNang);
	if (typeof(vHoChiMinh)!='undefined' && typeof(dHoChiMinh)!='undefined') AddCityWeather("HoChiMinh", dHoChiMinh);
	AddFooter();
}
ShowWeather();
