function ShowWeather()
{
	function AddCityWeather(City, Degree)
	{
		document.writeln('<tr bgcolor="#FFFFFF"><td class=BoxItem>&nbsp;', City, '</font></td><td class=BoxItem align=right>', Degree, '&#176;&nbsp;</td></tr>');
	}
	if (!AddHeader('Weather', 'Th&#7901;i ti&#7871;t', 3, PageHost.concat('/Service/i_Weather.gif')))
		return;
	AddCityWeather('H&#224; N&#7897;i', '24-32');
	AddCityWeather('Hu&#7871;', '24-34');
	AddCityWeather('&#272;&#224; N&#7861;ng', '25-33');
	AddCityWeather('H&#7891; Ch&#237; Minh', '24-31');
	AddFooter();
}
ShowWeather();