﻿// JScript File

function writeWeather()
{
	document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">')
	document.write('<table border="0" width="98%" cellpadding="1" cellspacing="1">')
	document.write('<tr  bgcolor="#f5f5f5">')
	document.write('<td align="center" width="52%"><b>Ha Noi</b></td>')
	document.write('<td align="center" width="48%">23-28°C</td>')
	document.write('</tr>')
	document.write('<tr  bgcolor="#ebebeb">')
	document.write('<td class="smallfont" align="center" width="52%"><b>Hue</b></td>')
	document.write('<td class="smallfont" align="center" width="48%">24-29°C</td>')
	document.write('</tr>')
	document.write('<tr  bgcolor="#f5f5f5">')
	document.write('<td align="center" width="52%"><b>HCMC</b></td>')
	document.write('<td align="center" width="48%">24-32°C</td>')
	document.write('</tr>')
	document.write('<tr  bgcolor="#ebebeb">')
	document.write('<td class="smallfont" align="center" width="52%"><b>Da Nang</b></td>')
	document.write('<td class="smallfont" align="center" width="48%">24-32°C</td>')
	document.write('</tr>')
	document.write('</table>')
}

