var newWeatherPopWindow = '';
function WeatherPopup(mylink)
{
	if (!newWeatherPopWindow.closed && newWeatherPopWindow.location) {
		newWeatherPopWindow.location.href = mylink.href;
	} else {
		newWeatherPopWindow = window.open(mylink.href, "popwindow", 'width=400,height=300,scrollbars=yes');
		if (!newWeatherPopWindow.opener) newWeatherPopWindow.opener = self;
	}
	if (window.focus) {newWeatherPopWindow.focus()}
	return false;
}
