var weatherWin = null;

function openWeather(id,st,latitude,longitude,region,wfo)
{
	URL = "http://www.dreamflows.com/php/countWeather.php?id=" + id + "&st=" + st
			+ "&lat=" + latitude + "&lon=" + longitude
			+ "&hq=" + region + "&wfo=" + wfo;
	if (weatherWin && !weatherWin.closed)
		weatherWin.location = URL;
	else
		weatherWin = window.open(URL,"Weather","");
	weatherWin.focus();
} 


