function ShowWeather()
{
	function AddCityWeather(City, Degree)
	{
		document.writeln('<tr><td width=50%  style="padding-left:15;border-bottom:1pt solid #b5b5b5"><span class=classspan  style=font-weight:normal>', City , '</span></td><td style="padding-right:15;border-bottom:1pt solid #b5b5b5" width=50%><div align=right><span class=classspan style=font-weight:normal>', Degree, '&nbsp;&#176;&nbsp;</span></div></td></tr>');
	}

//	if (!AddHeader('Weather', 'Th&#7901;i ti&#7871;t', 3, PageHost.concat('/Service/i_Weather.gif')))
//	return;

	if (typeof(vHanoi)!='undefined'     && typeof(dHanoi)    !='undefined') AddCityWeather(vHanoi, dHanoi);
	if (typeof(vHaiPhong)!='undefined'       && typeof(dHaiPhong)      !='undefined') AddCityWeather(vHaiPhong, dHaiPhong);
	if (typeof(vDaNang)!='undefined'    && typeof(dDaNang)   !='undefined') AddCityWeather(vDaNang, dDaNang);
	if (typeof(vHoChiMinh)!='undefined' && typeof(dHoChiMinh)!='undefined') AddCityWeather(vHoChiMinh, dHoChiMinh);
//	AddFooter();
}
ShowWeather();