function writeWeather()
{
	document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">')
	document.write('<table border="1" width="98%" cellpadding="3" style="border-collapse: collapse" bordercolor="#DAF0FB">')
	document.write('<tr bgcolor="#C2EDFE">')
	document.write('<td class="weather_name" style="padding-left: 5" width="84"><b>Hà Nội</b></td>')
	document.write('<td class="weather_temp">13-17°C</td>')
	document.write('</tr>')
	document.write('<tr bgcolor="#C2EDFE">')
	document.write('<td class="weather_name" style="padding-left: 5" width="84"><b>Huế</b></td>')
	document.write('<td class="weather_temp">16-19°C</td>')
	document.write('</tr>')
	document.write('<tr bgcolor="#C2EDFE">')
	document.write('<td class="weather_name" style="padding-left: 5" width="84"><b>Tp.HCM</b></td>')
	document.write('<td class="weather_temp">23-33°C</td>')
	document.write('</tr>')
	document.write('<tr bgcolor="#C2EDFE">')
	document.write('<td class="weather_name" style="padding-left: 5" width="84"><b>Đà Nẵng</b></td>')
	document.write('<td class="weather_temp">19-22°C</td>')
	document.write('</tr>')
	document.write('</table>')
}

