
function RenderWeather(Weather) 
{
	var sTmp = '';
	
	sTmp = '<table class=weatherbase cellspacing="0" border="0">'
	//sTmp += '<tr><td class=weathergraybanner>' + Weather.LocationNoZip + '</td></tr>';
	sTmp += '<tr><td width=155 align=center><span class=weatherheadings>Current Conditions:</span><br><span class=currently>' + Weather.CurrentConditions + '</span></td>';
	sTmp += '<td align=center width=35><span class=currenttemp>' + Weather.CurrentTemperature + '&#176;</span><br><img src="http://www.discoverklamath.com/weather/images/' + Weather.CurrentIcon + '.png" alt="' + Weather.CurrentConditions + '" title="' + Weather.CurrentConditions + '" width=31 height=31></td>';
	sTmp += '<td width=160><span class=forecast><a class=forecast href="http://www.discoverklamath.com/weather/forecast.asp">Forecast</a> <br> <a class=forecast href="http://www.discoverklamath.com/weather/roadconditions.asp">Road Conditions</a></span></td></tr>';
	//sTmp += '<tr><td colspan="2" class="wt">Updated:&nbsp;' + Weather.LastUpdated+ '</td></tr>';
	sTmp += '</table></center>'
	
	return sTmp;
}


