    function getMaxWidth() {
		if ( xScreen.getWidth() > 800 ) {
			return 800;
		} else {
			return xScreen.getWidth();
		}
    }
    function viewphotos(id,name) {
        xWindow.open("/popups/photos.aspx?photocategoryid="+escape(id)+"&name="+escape(name),"photos",getMaxWidth(),xScreen.getHeight(),'center','middle',0,1,0);
    }

	function weather() {
		xWindow.open("/popups/weather.aspx","weather",200,300,'top','middle',0,0,0);
	}
