
function RenderWeather(Weather) 
{
	var sTmp = '';
	

       	sTmp += '<font size=1><b>Kovai Weather';
	sTmp += '<img src="http://hosuronline.com/update/weather/images/' + Weather.CurrentIcon + '.gif" alt="' + Weather.CurrentConditions + '">';
	sTmp += '&nbsp;&nbsp;' + Weather.CurrentTemperature + '&#176;F</b>';
		
	return sTmp;
}

