function getWeatherReportImage(lsPlace)
{
	if(lsPlace=="Healy")  {
	document.write('<a href="http://www.weatherforyou.com/weather/Alaska/Denali.html" target="_blank">')
	}
	else  {
		document.write('<a href="http://www.weatherforyou.com/weather/Alaska/'+lsPlace+'.html" target="_newwindow">')
	}
	document.write('<img id="weatherReportImage" src=""border="0" width="175" height="90">')
	if(lsPlace=="Healy")
	{
	document.getElementById("weatherReportImage").src="http://www.weatherforyou.net/fcgi-bin/hw3/hw3.cgi?config=png&forecast=hourly&alt=hwihourly&place="+lsPlace+"&state=ak&country=us&hwvbg=white&hwvtc=black&metric=0&hwvdisplay=Denali,+AK"
	}
	else
	{
		document.getElementById("weatherReportImage").src="http://www.weatherforyou.net/fcgi-bin/hw3/hw3.cgi?config=png&forecast=hourly&alt=hwihourly&place="+lsPlace+"&state=ak&country=us&hwvbg=white&hwvtc=black&metric=0&hwvdisplay="
	}
	document.write('</a><br><br>')
	var weather_link = '<a href="http://www.alaska.org/weather/alaska_weather_forecast.php?place=' + lsPlace + '" target="weather" class="text-02-und">View 7-day forecast</a>';
	document.write(weather_link)
}

function sevenDaysWeatherForecast(lsPlace)
{
 window.open("/admin/popup_sevenDaysWeatherForecast.jsp?place="+lsPlace+"",'popup1','height=480,width=560,top=2,left=2,toolbar=false,location=false,status=yes,menubar=false,scrollbars=yes,resizable=yes')
}