//contact popup window

function weather(sel)
{
	if (sel == "map") {
		winLoc = "/cgi-bin/weather.pl?code=PANC&location=Anchorage";
	}
	if (sel == "forecast") {
		winLoc = "/cgi-bin/weather_forecast.pl";
	}
	newwindow = window.open(winLoc, "popup", "width=720,height=676,scrollbars=yes");
}


	
