function RenderWeather(Weather) 
{
	var sTmp = '';	
	aForecastDayName = Weather.ForecastDayName.split("|");
	aForecastDate = Weather.ForecastDate.split("|");
	aForecastDayConditions = Weather.ForecastDayConditions.split("|");
	aForecastDayIcon = Weather.ForecastDayIcon.split("|");
	aForecastHigh = Weather.ForecastHigh.split("|");
	aForecastLow = Weather.ForecastLow.split("|");
	aForecastDayPrecipitation = Weather.ForecastDayPrecipitation.split("|");
	
	sTmp += '<table cellspacing="1" cellpadding="2" width="350" border="0">';
	sTmp += '<tr align="left"><td colspan="2" class="label2">' + Weather.Location + '</td></tr>';
	
	sTmp += '<tr><td colspan="2" align="left" class="label"><br>' + aForecastDayName[1] + '&nbsp-&nbsp' + aForecastDate[1] + '</td></tr>';
	sTmp += '<tr><td align="center" class="txt"><br><img height="31" alt="' + aForecastDayConditions[1] + '" src="' + Weather.ImagePath + aForecastDayIcon[1] + '.png" align="middle">';
	sTmp += '<br>' + aForecastDayConditions[1] + '<br>';
	sTmp += '<br></td>';
	sTmp += '<td align="center"><table border="0" cellspacing="0" cellpadding="0"><tr>';
	sTmp += '<td width="60%" class="label">Temp. M&aacute;xima:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastHigh[1] + 'ºC</td></tr>';
	sTmp += '<tr><td class="label">Temp. M&iacute;nima:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastLow[1] + 'ºC</td></tr>';
	sTmp += '<tr><td class="label">Precipitação:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastDayPrecipitation[1] + '%</td></tr>';
	sTmp += '</table></td>';
	sTmp += '</tr>';
	
	sTmp += '<tr><td colspan="2" align="left" class="label">' + aForecastDayName[2] + '&nbsp-&nbsp' + aForecastDate[2] + '</td></tr>';
	sTmp += '<tr><td align="center" class="txt"><br><img height="31" alt="' + aForecastDayConditions[2] + '" src="' + Weather.ImagePath + aForecastDayIcon[2] + '.png" align="middle">';
	sTmp += '<br>' + aForecastDayConditions[2] + '<br>';
	sTmp += '<br></td>';
	sTmp += '<td align="center"><table border="0" cellspacing="0" cellpadding="0"><tr>';
	sTmp += '<td width="60%" class="label">Temp. M&aacute;xima:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastHigh[2] + 'ºC</td></tr>';
	sTmp += '<tr><td class="label">Temp. M&iacute;nima:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastLow[2] + 'ºC</td></tr>';
	sTmp += '<tr><td class="label">Precipitação:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastDayPrecipitation[2] + '%</td></tr>';
	sTmp += '</table></td>';
	sTmp += '</tr>';
	
	sTmp += '<tr><td colspan="2" align="left" class="label"><br>' + aForecastDayName[3] + '&nbsp-&nbsp' + aForecastDate[3] + '</td></tr>';
	sTmp += '<tr><td align="center" class="txt"><br><img height="31" alt="' + aForecastDayConditions[3] + '" src="' + Weather.ImagePath + aForecastDayIcon[3] + '.png" align="middle">';
	sTmp += '<br>' + aForecastDayConditions[3] + '<br>';
	sTmp += '<br></td>';
	sTmp += '<td align="center"><table border="0" cellspacing="0" cellpadding="0"><tr>';
	sTmp += '<td width="60%" class="label">Temp. M&aacute;xima:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastHigh[3] + 'ºC</td></tr>';
	sTmp += '<tr><td class="label">Temp. M&iacute;nima:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastLow[3] + 'ºC</td></tr>';
	sTmp += '<tr><td class="label">Precipitação:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastDayPrecipitation[3] + '%</td></tr>';
	sTmp += '</table></td>';
	sTmp += '</tr>';
	
	sTmp += '<tr><td colspan="2" align="left" class="label"><br>' + aForecastDayName[4] + '&nbsp-&nbsp' + aForecastDate[4] + '</td></tr>';
	sTmp += '<tr><td align="center" class="txt"><br><img height="31" alt="' + aForecastDayConditions[4] + '" src="' + Weather.ImagePath + aForecastDayIcon[4] + '.png" align="middle">';
	sTmp += '<br>' + aForecastDayConditions[4] + '<br>';
	sTmp += '<br></td>';
	sTmp += '<td align="center"><table border="0" cellspacing="0" cellpadding="0"><tr>';
	sTmp += '<td width="60%" class="label">Temp. M&aacute;xima:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastHigh[4] + 'ºC</td></tr>';
	sTmp += '<tr><td class="label">Temp. M&iacute;nima:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastLow[4] + 'ºC</td></tr>';
	sTmp += '<tr><td class="label">Precipitação:</td>';
	sTmp += '<td style="PADDING-LEFT: 5px" class="txt">' + aForecastDayPrecipitation[4] + '%</td></tr>';
	sTmp += '</table></td>';
	sTmp += '</tr>';
	
	
	sTmp += '<tr><td colspan="2" align="left" class="txt"><br>Última actualização ' + Weather.ForecastLastUpdated + '</td></tr>';
	sTmp += '</table>';	
	
	return sTmp;S
}
