	function openWeather(theURL) {
		var postCode = document.postcodeAreaSearch.postcodeAreaSearch.value;
		openWeatherWindow(theURL + '?sPostCode=' + postCode);
	}
	
	function openWeatherRegion(theURL) {
		var map = document.scott.map[document.scott.map.selectedIndex].value;
		openWeatherWindow(theURL + '&amp;f4f=1&amp;map=' + map);
	}
    
    
    function openWeatherWindow(URL) {
        
        var height = self.screen.height;
        var width = self.screen.width;
        
        height = height * 0.65;
        width = width * 0.75;

        
        window.open(URL,'','toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width='+width+',height='+height+',left=160,top=30');
        
    }    
