function ShowWeather()
{
	function AddCityWeather(City, Degree)
	{
		document.writeln('<tr bgcolor="#FFFFFF"><td class=BoxItem>&nbsp;', Trim(City) , '</font></td><td class=BoxItem align=right>', Trim(Degree), '&nbsp;&#176;&nbsp;</td></tr>');
	}

	if (!AddHeader('Weather', 'Weather forecast', 3, PageHost.concat('/Service/i_Weather.gif')))
	return;

	if (typeof(vHanoi)!='undefined'     && typeof(dHanoi)    !='undefined') AddCityWeather('Ha Noi', dHanoi);
	if (typeof(vHaiPhong)!='undefined'  && typeof(dHaiPhong) !='undefined') AddCityWeather('Hai Phong', dHaiPhong);
	if (typeof(vDaNang)!='undefined'    && typeof(dDaNang)   !='undefined') AddCityWeather('Da Nang', dDaNang);
	if (typeof(vHoChiMinh)!='undefined' && typeof(dHoChiMinh)!='undefined') AddCityWeather('Ho Chi Minh', dHoChiMinh);
	AddFooter();
}
ShowWeather();
