Changeset 25268 in main
- Timestamp:
- 05/18/22 13:32:17 (6 weeks ago)
- Location:
- adopters/nj/branches/3.0/src/main/webapps
- Files:
-
- 1 added
- 9 deleted
- 77 edited
Legend:
- Unmodified
- Added
- Removed
-
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/json/leaflet/_Base.json
r23267 r25268 2 2 // @see": http"://leafletjs.com/reference.html#map-options 3 3 { // Start of _Base.json 4 "map":4 map: 5 5 { 6 "attributionControl": true 7 ,"center": [34.25, -107] // NM - needs to be set for any other adopter. 8 ,"zoomControl": false // needed so custom IBIS zoom control can be used. 9 ,"zoom": 7 // zoom can be x.x but won't work with some tile servers. 10 ,"zoomSnap": 0.5 11 ,"zoomDelta": 0.5 12 ,"minZoom": 6 13 ,"maxZoom": 16 14 ,"maxBounds": [[30.25, -101], [38.25, -111]] 15 16 ,"closePopupOnClick": true 17 ,"scrollWheelZoom": false 18 ,"touchZoom": false 19 ,"doubleClickZoom": true 20 ,"dragging": true 21 22 // https"://github.com/aratcliffe/Leaflet.contextmenu. Below are 23 // the general context menu items that are present for any part 24 // of a map (if contextmenu is true). If false the menu is still 25 // available for sub layers IF that layer is a contextmenu that 26 // is set to true. 27 // The context menu is auto created via the plugin which injects 28 // itself into the main leaflet "L" code with other layers being 29 // supported via the assoc "Mixin" code. As such there's no 30 // context menu object instantiation needed - simply adding to 31 // the map is all that is needed. The IBIS-PH GeoJSON layers 32 // need to have some mixin registration help via the bindContextMenu 33 // call (as well as special event handlers to capture the object 34 // context. 35 // NOTE: As of 6/26/2-17, the leaflet 103 and context menu 1.5 36 // has an issue with jsonlayer style reset. 37 ,"contextmenu": true 38 ,"contextmenuItems": 39 [ 40 { 41 "text": "Show coordinates" 42 ,"callback": function (e) 43 { 44 L.popup() 45 .setLatLng(e.latlng) 46 .setContent("Latitude: " + e.latlng.lat + "<br/>Longitude: " + e.latlng.lng) 47 .openOn(this) 48 ; 49 } 50 } 51 ,{ 52 "text": "Center map here" 53 ,"callback": function (e) {this.panTo(e.latlng);} 54 } 55 ,"-" 56 ,{ 57 "text": "Zoom in" 58 ,"callback": function (e) {this.zoomIn();} 59 } // function this.zoomIn which calls leafletMap.zoomIn which is an exposed map function... 60 ,{ 61 "text": "Zoom out" 62 ,"callback": function (e) {this.zoomOut();} 63 } // can do icons but be consist and do as css background": "icon": "images/zoom-in.png", 64 ,{ 65 "text": "Reset zoom" 66 ,"callback": function (e) {this.setView(this.options.center, this.options.zoom);} 67 } 68 ,"-" 69 ,{"text": "Cancel"} 70 // ,"-" 71 // ,{"text": "Export to PNG", "callback": exportMapToPNG} 72 // ,{"text": "ONLY ON choro - Export Thematic JSON Layer - have layer context menu for export.", "callback": zoomOut} 73 ] 6 center: [40.168, -74.572] 7 ,maxBounds: [[38.78, -76.0], [41.42, -72.8]] //south west, then north east - larger negative number on east moves NJ map east 8 ,zoom: 8 9 ,minZoom: 7 10 ,maxZoom: 14 11 ,attributionControl: true 74 12 } 75 13 76 // options passed to the leaflet info panel (mouse over panel) constructor 77 // @see": http"://leafletjs.com/reference.html#control & code for options. 78 ,"infoPanelControl": 14 /* This is the map's intent/purpose/. Valid values are: 15 - selection = tells this code to build the geo area type selection UI. 16 - choropleth= tells this code to build the choropleth control UI. 17 - display = not current used - for v3 demographics? 18 NOTE: choropleth is the default but this value can be overridden 19 by named configuration usage or even having specific js code for 20 certain page requests. 21 */ 22 ,type: "choropleth" 23 24 ,layersControl: 79 25 { 80 "position": "topleft" 81 ,"className": "InfoPanel" 82 } 26 collapsed: false 83 27 84 // options passed to the leaflet zoom control constructor. Can supply 85 // text and titles along with CSS to control button UI. 86 // @see": http"://leafletjs.com/reference.html#control-zoom and code. 87 ,"zoomControl": 88 { 89 "show": true 90 ,"position": "topleft" 91 } 28 /* Main container for layers - specifically groups of layers. Each 29 group is defined starting with the group's key (example: "labels":). 30 Each group structure contains a title property and a group type 31 property. The title is the text that appears at the top of that 32 selections group in the control panel's UI. The group type 33 controls where within the layer UI control to include the group 34 of layers (how to build the selections). 92 35 93 // options passed to the leaflet scale control constructor 94 // @see": http"://leafletjs.com/reference.html#control-scale 95 ,"scaleControl": 96 { 97 "show": true 98 ,"position": "bottomright" 99 ,"metric": true 100 ,"imperial": true 101 ,"updateWhenIdle": false 102 } 36 Valid group "type" values are: 37 - base = put definitions in the base map grouping/area. 38 - overlay = put definitions in the overlays area. 39 - selection = put definitions into the special geo area selection 40 area. This is used when the map "type" property is "selection". 41 - choropleth = choro grouping - not currently in use - hard coded. 42 The choropleth control is displayed when the map "type" 43 property is "choropleth". 103 44 104 // options passed to the leaflet layers control constructor. 105 // @see": http"://leafletjs.com/reference.html#control-layers and code. 106 ,"layerSetsControl": 107 { 108 "position": "topright" 109 ,"collapsed": false 110 ,"autoZIndex": true 111 } 112 113 ,"choroplethControl": 114 { 115 "position": "bottomleft" 116 ,"legend": 45 - defaultOptions = base options that all of the group's layers use. 46 - layers = actual layer definition structure. 47 48 */ 49 ,layerGroups: 117 50 { 118 "titleRangeDisplayType": "PlusAfterStartValue"119 // options are LessThanEqualEndValue, PlusAfterStartValue,120 // GreaterThanEqualRangeSeparator, default": -121 // NOTE: if start and end are same value then no delimiter122 }123 ,"dataClasses":124 {125 " type":51 /* The Geo type labels are implemented using a circle marker. This was 52 done 1/2015 due to time limitations and works fine via the config 53 code below. Another solution is to attach with the layer and use the 54 layer's poly min/max x/y to position. See the L.GeoJSON.Choropleth.js 55 file line 219 for how this was started. That code could be used for 56 other labeling of layers but would need to be attached and configed. 57 */ 58 "labels": 126 59 { 127 "value": "Jenks2" 128 ,"selections": 60 title: "Labels" 61 ,type: "overlay" 62 ,defaultOptions: 129 63 { 130 "Jenks": {"title": "Jenks Natural Breaks", "description": "Grouped by similar values - natural groupings inherent in the data"} 131 ,"Jenks2": {"title": "Jenks Natural Breaks - Original", "description": "Grouped by similar values - natural groupings inherent in the data - Original"} 132 ,"Quantile": {"title": "Equal Groups (Quantile)", "description": "Groups the data into equally sized value counts"} 133 ,"EqualInterval": {"title": "Equal Intervals", "description": "Grouping based on equally sized value ranges"} 134 ,"StdDev": {"title": "Mean Standard Deviation", "description": "Number of groups defines how many standard devidations center on the mean value"} 135 ,"GeometricProgression": {"title": "Geometric Progression", "description": "Equally sized group range and group count - works well on non normally distributed data"} 136 ,"ArithmeticProgression": {"title": "Arithmetic Progression", "description": "Alternative equally sized groups"} 137 ,"UniqueValues": {"title": "Unique Values", "description": "Unique values based on precision"} 138 ,"BetterWorse": {"title": "Better Worse", "description": "Group determined by comparing an area's confidence values against a supplied comparison value (typically state or US)"} 139 ,"StaticValues": {"title": "Static Values", "description": "Grouped by list of static values"} 140 } 141 ,"jenksLowSampleSizeDataClass": "UniqueValues" // remove to enable auto num groups sizing when small data counts. 142 } 143 ,"numberOfGroups": 144 { 145 "value": 5 // used to test data point count vs selection count otherwise can simply use the list size. 146 ,"minValue": 2 147 ,"maxValue": 6 148 ,"title": "Number of Categories" 149 ,"description": "How many data value groups" 150 ,"selections": 151 { 152 "2": {"title": "2", "description": "2 groups - halfs"} 153 ,"3": {"title": "3", "description": "3 groups - thirds"} 154 ,"4": {"title": "4", "description": "4 groups - quarties"} 155 ,"5": {"title": "5", "description": "5 groups - quintiles"} 156 } 157 } 158 } 159 ,"areaColor": 160 [ 161 ["black"] 162 ,["transparent", "#FFEDA0"] 163 ,["transparent", "#FFECA7", "#FA823C"] 164 ,["transparent", "#FFECA7", "#FA823C", "#AF1013"] 165 ,["transparent", "#FFECA7", "#FC9C4B", "#E74D2B", "#AF1013"] 166 ,["white", "#FFECA7", "#FDB559", "#FA823C", "#E74D2B", "#AF1013"] 167 ,["transparent", "#FFEDA0", "#FED976", "#FEB24C", "#FC4E2A", "#E31A1C", "#BD0026"] 168 ,["transparent", "#FFEDA0", "#FED976", "#FEB24C", "#FD8D3C", "#FC4E2A", "#E31A1C", "#BD0026"] 169 ,["transparent", "#FFEDA0", "#FED976", "#FEB24C", "#FD8D3C", "#FC4E2A", "#E31A1C", "#BD0026", "#800026"] 170 ] 171 } 172 173 ,"layerSets": 174 { 175 "sets": 176 { 177 "baseLayer": 178 { 179 "title": null // if no title then no group title... 180 ,"type": "baseLayer" // isBaseMap": true 181 ,"layers": 182 { 183 "osm": 64 pointToLayer: function(feature, latlng) 184 65 { 185 "title": "Open Street Map" 186 ,"type": "tile" 187 ,"url": "http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" 188 ,"show": true 189 ,"options": {"attribution": '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'} 190 } 191 ,"none": 192 { 193 "title": "None" 194 ,"type": "tile" 66 return L.marker(latlng, 67 { 68 icon: L.divIcon( {html: feature.properties["TITLE"], className: "GeoLabel", iconAnchor: [0, 0]} ) 69 } 70 ); 195 71 } 196 72 } 197 } 198 ,"labels": 199 { 200 "title": "Labels" 201 ,"type": "overlay" 202 ,"layers": 73 ,layers: 203 74 { 204 75 "GeoCnty": 205 76 { 206 "title": "County"207 , "url": "contentfile/json/geo/GeoCntyLabel.json"208 , "show": false209 , "options":77 title: "County" 78 ,url: "view/json/map/GeoCntyLabel.json" 79 ,show: true 80 ,options: 210 81 { 211 "pointToLayer": function(feature, latlng)212 {213 return L.marker(latlng,214 {215 "icon": L.divIcon( {"html":feature.properties["TITLE"], "className": "GeoLabel", "iconAnchor": [25, 10]} )216 }217 );218 }219 }220 }221 ,"GeoRegion":222 {223 "title": "Health Region"224 ,"url": "contentfile/json/geo/GeoRegionLabel.json"225 ,"show": false226 ,"options":227 {228 "pointToLayer": function(feature, latlng)229 {230 return L.marker(latlng,231 {232 "icon": L.divIcon( {"html":feature.properties["TITLE"], "className": "GeoLabel GeoRegionLabel LargerFont Bold", "iconAnchor": [35, 35]} )233 }234 );235 }236 }237 }238 ,"GeoUrbanRur":239 {240 "title": "Urban/Rural"241 ,"url": "contentfile/json/geo/GeoUrbanRurLabel.json"242 ,"show": false243 ,"options":244 {245 "pointToLayer": function(feature, latlng)246 {247 return L.marker(latlng,248 {249 "icon": L.divIcon( {"html": feature.properties["TITLE"], "className": "GeoLabel GeoUrbanRurLabel LargerFont Bold", "iconAnchor": [35, 35]} )250 }251 );252 }253 }254 }255 ,"GeoSarea":256 {257 "title": "Small Area"258 ,"url": "contentfile/json/geo/GeoSareaLabel.json"259 ,"show": false260 ,"options":261 {262 "pointToLayer": function(feature, latlng)263 {264 return L.marker(latlng,265 {266 "icon": L.divIcon( {"html":feature.properties["TITLE"], "className": "GeoSareaLabel", "iconAnchor": [16, 11]} )267 }268 );269 }270 }271 }272 ,"GeoCityMajor":273 {274 "title": "Major Cities"275 ,"url": "contentfile/json/geo/GeoCityMajor.json"276 ,"show": false277 ,"options":278 {279 "pointToLayer": function(feature, latlng)280 {281 return L.marker(latlng,282 {283 "icon": L.divIcon( {"html":feature.properties["TITLE"], "className": ".DataViz.Map .GeoLabel.GeoCityLabel SmallerFont NearBlackText", "iconAnchor": [-4, 4]} )284 }285 );286 }287 }288 }289 }290 }291 ,"regions":292 {293 "title": "Area Boundaries"294 ,"type": "overlay"295 ,"layers":296 {297 "county":298 {299 "title": "Counties"300 ,"url": "contentfile/json/geo/GeoCntyLine.json"301 ,"options":302 {303 "style":304 {305 "dashArray": ""306 ,"color": "#aaaaaa"307 ,"weight": 1.5308 ,"opacity": 1.0309 ,"fillOpacity": 0.0310 }311 }312 }313 ,"region":314 {315 "title": "Health Regions"316 ,"url": "contentfile/json/geo/GeoRegionLine.json"317 ,"show": false318 ,"options":319 {320 "style":321 {322 "dashArray": ""323 ,"color": "#4C4493"324 ,"weight": 10.0325 ,"opacity": 0.5326 ,"fillOpacity": 0.0327 }328 }329 }330 ,"urbanrural":331 {332 "title": "Urban/Rural"333 ,"url": "contentfile/json/geo/GeoUrbanRurLine.json"334 ,"show": false335 ,"options":336 {337 "style":338 {339 "dashArray": ""340 ,"color": "#4C4493"341 ,"weight": 10.0342 ,"opacity": 0.4343 ,"fillOpacity": 0.0344 }345 }346 }347 }348 }349 ,"roads":350 {351 "title": "Features"352 ,"type": "overlay"353 ,"defaultOptions":354 {355 "style":356 {357 "dashArray": "5,5"358 ,"color": "#000"359 ,"weight": 3360 ,"opacity": 0.5361 ,"fillColor": "yellow"362 ,"fillOpacity": 0.5363 }364 }365 ,"layers":366 {367 "interstates":368 {369 "title": "Interstates"370 ,"url": "contentfile/json/geo/GeoRoadsInterstate.json"371 ,"options":372 {373 "style":374 {375 "dashArray": ""376 ,"color": "#B18D8D"377 ,"weight": 2378 ,"opacity": .8379 }380 }381 }382 }383 }384 ,"water":385 {386 "title": ""387 ,"type": "overlay"388 ,"layers":389 {390 "main":391 {392 "title": "Rivers, Lakes"393 ,"url": "contentfile/json/geo/GeoWater.json"394 ,"show": false395 ,"options":396 {397 "style":398 {399 "dashArray": ""400 ,"color": "#638E98"401 ,"weight": 1.2402 ,"opacity": 0.9403 ,"fillColor": "#638E98"404 ,"fillOpacity": 0.8405 }406 }407 }408 }409 }410 ,"points":411 {412 "title": ""413 ,"type": "overlay"414 ,"layers":415 {416 "cities":417 {418 "title": "Major Cities"419 ,"type": "interactive"420 ,"url": "contentfile/json/geo/GeoCityMajor.json"421 ,"show": false422 ,"options":423 {424 "pointToLayer": function(feature, latlng)425 {426 return new L.marker(latlng,427 {428 "icon": new L.divIcon( {"html":" ", "className": "FontIcon GeoCityIconMarker"} )429 //"icon": new L.divIcon( {"html":" ", "className": "FontIcon GeoCityIconMarker"} )430 }431 );432 }433 82 } 434 83 } … … 437 86 } 438 87 } 88 89 ,choroplethControl: 90 { 91 legend: 92 { 93 titleRangeDisplayType: "PlusAfterStartValue" // options are LessThanEqualEndValue, PlusAfterStartValue, GreaterThanEqualRangeSeparator, default: - 94 } 95 ,areaColor: 96 [ 97 ["black"] 98 ,["transparent", "#0868AC"] 99 ,["transparent", "#A8DDB5", "#0868AC"] 100 ,["transparent", "#FFFFCC", "#A8DDB5", "#0868AC"] 101 ,["transparent", "#FFFFCC", "#BAE4BC", "#7BCCC4", "#0868AC"] 102 ,["transparent", "#FFFFCC", "#BAE4BC", "#7BCCC4", "#43A2CA", "#0868AC"] 103 ,["transparent", "#FFFFCC", "#CCEBC5", "#A8DDB5", "#7BCCC4", "#43A2CA", "#0868AC"] 104 ,["transparent", "#FFFFCC", "#CCEBC5", "#A8DDB5", "#7BCCC4", "#4EB3D3", "#2B8CBE", "#0868AC"] 105 ] 106 } 439 107 } -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/community/Introduction.xml
r23267 r25268 27 27 <tr> 28 28 <td> 29 <a href="community/snapshot/Builder.html"><img src=" view/image/home/snapshoticon.png" alt="NJSHAD community dashboard images" title="Go to the community dashboard builder page" style="width:100%"/></a>29 <a href="community/snapshot/Builder.html"><img src="contentfile/image/home/snapshoticon.png" alt="NJSHAD community dashboard images" title="Go to the community dashboard builder page" style="width:100%"/></a> 30 30 </td> 31 31 <td> … … 38 38 <td> 39 39 <a href="community/highlight/Builder.html"> 40 <img src=" view/image/home/gauge.png" alt="NJSHAD community gauge image" title="Go to the county profile report builder page" style="width:100%"/></a>40 <img src="contentfile/image/home/gauge.png" alt="NJSHAD community gauge image" title="Go to the county profile report builder page" style="width:100%"/></a> 41 41 </td> 42 42 <td> … … 47 47 </table> 48 48 <!--a href="community/snapshot/Builder.html"> 49 <img src=" view/image/home/snapshoticon.png" alt="NJSHAD community dashboard images" title="Go to the community dashboard builder page" align="left" width="55px"/></a>49 <img src="contentfile/image/home/snapshoticon.png" alt="NJSHAD community dashboard images" title="Go to the community dashboard builder page" align="left" width="55px"/></a> 50 50 <b>Dashboard</b><br/>Select a county or racial/ethnic community.<br/><br/> 51 51 52 52 <a href="community/highlight/Builder.html"> 53 <img src=" view/image/home/gauge5.png" alt="NJSHAD community gauge image" title="Go to the county profile report builder page" align="left" width="55px"/></a>53 <img src="contentfile/image/home/gauge5.png" alt="NJSHAD community gauge image" title="Go to the county profile report builder page" align="left" width="55px"/></a> 54 54 <b>Full Profile Report</b><br/>Select a county.--><br/> 55 55 Compare your community to NJ and US. -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/AARate.xml
r23267 r25268 64 64 65 65 <div class="Note"> 66 <img src="../ view/image/important_icon.gif" alt="important! icon" width="19" height="18" title="IMPORTANT!"/>66 <img src="../contentfile/image/important_icon.gif" alt="important! icon" width="19" height="18" title="IMPORTANT!"/> 67 67 Compare only age-adjusted rates that have been adjusted to the <text class="Bold">same</text> standard 68 68 population. For instance, don't compare rates age-adjusted using the U.S. 1940 standard population … … 395 395 396 396 <div class="Note"> 397 <img src="../ view/image/important_icon.gif" alt="important! icon" width="19" height="18" title="IMPORTANT!"/>397 <img src="../contentfile/image/important_icon.gif" alt="important! icon" width="19" height="18" title="IMPORTANT!"/> 398 398 Although age-adjustment may be used with broad population age groups, such as adults (e.g., age 18+), 399 399 it is not necessary (or meaningful) to age-adjust data for smaller age groups (e.g., age 18-24). -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/Acknowledgments.xml
r23267 r25268 58 58 59 59 <a href="http://nj.gov/health/epht" target="_blank" title="Go to EPHT site"> 60 <img src=" view/image/home/NewJersey_Tracking.png" style="float:right; vertical-align:text-top; margin:0; height:100px;" title="EPHTN logo" alt="EPHT"/></a>60 <img src="contentfile/image/home/NewJersey_Tracking.png" style="float:right; vertical-align:text-top; margin:0; height:100px;" title="EPHTN logo" alt="EPHT"/></a> 61 61 NJSHAD is a collaborative effort involving multiple offices and divisions in the New Jersey Department of Health. Funding for NJSHAD II implementation and enhancement is provided in part through the NJDOH Consumer, Environmental, and Occupational Health 62 62 Services' <a href="http://nj.gov/health/epht" class="Bold" target="_blank">Environmental Public Health -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/Basics.xml
r23267 r25268 35 35 <ul> 36 36 <li>The <b>top navigation menu</b> is the same on every NJSHAD page, so you should always be able to find your way back home.<br/> 37 <img src=" view/image/topmenu.png" title="snip of top menu"/></li>37 <img src="contentfile/image/topmenu.png" title="snip of top menu"/></li> 38 38 <br/> 39 39 <li>The <b>left navigation menu</b> is "context specific" and changes depending on which section you're in and/or which page you're on.<br/> 40 40 </li> 41 41 </ul> 42 <!--img src=" view/image/leftmenu.png" style="vertical-align:text-top;"/-->43 <img src=" view/image/leftmenu.png" style="height:120px" title="snip of Home left menu"/>44 <img src=" view/image/leftmenu2.png" style="height:120px" title="snip of Topics left menu"/>45 <img src=" view/image/leftmenu3.png" style="height:120px" title="snip of Resources left menu"/>42 <!--img src="contentfile/image/leftmenu.png" style="vertical-align:text-top;"/--> 43 <img src="contentfile/image/leftmenu.png" style="height:120px" title="snip of Home left menu"/> 44 <img src="contentfile/image/leftmenu2.png" style="height:120px" title="snip of Topics left menu"/> 45 <img src="contentfile/image/leftmenu3.png" style="height:120px" title="snip of Resources left menu"/> 46 46 </div> 47 47 </div> … … 55 55 <b>Pluses and Minuses</b><br/> 56 56 Throughout NJSHAD you will see PLUS signs and MINUS signs.<br/> 57 <img src=" view/image/icon/16/box_plus-gray.png" title="plus sign"/>58 <img src=" view/image/icon/16/box_minus-gray.png" title="minus sign"/><br/>57 <img src="contentfile/image/icon/16/box_plus-gray.png" title="plus sign"/> 58 <img src="contentfile/image/icon/16/box_minus-gray.png" title="minus sign"/><br/> 59 59 In menu buttons, they look like this (and the minus will be an X):<br/> 60 <img src=" view/image/icon/16/plus_circle-blue.png" title="plus sign"/>61 <img src=" view/image/icon/16/cross_3d-circle-red.png" title="red X"/><br/>60 <img src="contentfile/image/icon/16/plus_circle-blue.png" title="plus sign"/> 61 <img src="contentfile/image/icon/16/cross_3d-circle-red.png" title="red X"/><br/> 62 62 Clicking a PLUS sign will expand content below it.<br/> 63 63 Clicking a MINUS sign will collapse the content below it.<br/> … … 65 65 <b>Question Marks</b><br/> 66 66 In the Dataset Query section of NJSHAD, you'll see question marks.<br/> 67 <img src=" view/image/icon/16/question_balloon-white.png" title="question bubble"/>68 <img src=" view/image/icon/16/text_question.gif" title="question link"/><br/>67 <img src="contentfile/image/icon/16/question_balloon-white.png" title="question bubble"/> 68 <img src="contentfile/image/icon/16/text_question.gif" title="question link"/><br/> 69 69 Hover over the blue ones and you'll get a pop-up with more information.<br/> 70 70 Click the yellow ones to go to another page with a lot more information. … … 79 79 <div class="panel-body"> 80 80 At the bottom of each page, below a solid gray line and above the dark grey box full of light blue links, you'll see bold black text with a program name, address, URL, e-mail address, and possibly other contact info.<br/> 81 <img src=" view/image/orgunitfooter.png" title="sample footer"/><br/><br/>81 <img src="contentfile/image/orgunitfooter.png" title="sample footer"/><br/><br/> 82 82 That is the program in NJDOH that's responsible for the information on that page. They may not necessarily have put the info into NJSHAD, but they are the original source of the data or information.<br/><br/> 83 83 If you have questions about the information on a page (other than website-related issues), that's who you should contact for more information. … … 94 94 <div class="panel-body"> 95 95 After you submit a query, <b>Graph It!</b> will appear in the left navigation menu.<br/> 96 <img src=" view/image/home/graphitcollapsed.png" title="Graph It!"/><br/>96 <img src="contentfile/image/home/graphitcollapsed.png" title="Graph It!"/><br/> 97 97 Click this button to create or change a graph of the data in your query result. Change graph types as many times as you like to get the graph you need. 98 98 </div> … … 129 129 <div class="panel-body"> 130 130 <b>Hover Over</b><br/> 131 In NJSHAD graphs and maps, if you hover your mouse pointer over a data point, the corresponding data (rate, numerator, denominator, etc.) will pop-up. <img src=" view/image/home/hoverinfo.png" style="vertical-align:text-top;" title="graph pop-up info"/><br/>131 In NJSHAD graphs and maps, if you hover your mouse pointer over a data point, the corresponding data (rate, numerator, denominator, etc.) will pop-up. <img src="contentfile/image/home/hoverinfo.png" style="vertical-align:text-top;" title="graph pop-up info"/><br/> 132 132 <br/> 133 133 <b>Removing Graph Categories</b><br/> 134 Let's say you have a graph for four causes of death over the years 2010 to 2015 and you decide you only want to see three of the causes. Go to the legend/key to the right of the graph and click the cause you no longer want to see and it'll disappear from the graph! <img src=" view/image/home/lineafter.png" style="vertical-align:text-top;"/> Click it again and it'll come back. <img src="view/image/home/linebefore.png" style="vertical-align:text-top;"/><br/>134 Let's say you have a graph for four causes of death over the years 2010 to 2015 and you decide you only want to see three of the causes. Go to the legend/key to the right of the graph and click the cause you no longer want to see and it'll disappear from the graph! <img src="contentfile/image/home/lineafter.png" style="vertical-align:text-top;"/> Click it again and it'll come back. <img src="contentfile/image/home/linebefore.png" style="vertical-align:text-top;"/><br/> 135 135 This works for any category, not just causes of death. 136 136 <br/><br/> 137 137 <b>Fun With Maps</b><br/> 138 <img src=" view/image/home/mapzoom.png" style="float:left; padding-right:10px" title="map tools"/> <img src="view/image/home/maptools.png" style="float:right" title="map tools"/>138 <img src="contentfile/image/home/mapzoom.png" style="float:left; padding-right:10px" title="map tools"/> <img src="contentfile/image/home/maptools.png" style="float:right" title="map tools"/> 139 139 ← In the top left corner of each map are tools to zoom in (+) and zoom out (-).<br/> 140 140 <span style="font-size:75%">●</span>   4 arrows: zoom way out.<br/> 141 141 <span style="font-size:75%">●</span>   Rounded arrow: reset map to original size.<br/><br/> 142 <!--img src=" view/image/home/maptools.png" style="float:right"/><br/><br/><br/-->142 <!--img src="contentfile/image/home/maptools.png" style="float:right"/><br/><br/><br/--> 143 143 → In the top right corner of each map is a control panel. <!--span style="font-size:200%;"> → → → → </span--> 144 144 <ul> … … 157 157 </div> 158 158 <div class="panel-body"> 159 All NJSHAD tables have little arrows in the column headers that look like the letter V. <img src=" view/image/home/sortfilter.png"/> These arrows can be used to sort and hide columns and to filter rows.<br/><br/>160 Clicking on the arrow will bring up this menu: <img src=" view/image/home/sortmenu.png"/>.<br/>159 All NJSHAD tables have little arrows in the column headers that look like the letter V. <img src="contentfile/image/home/sortfilter.png"/> These arrows can be used to sort and hide columns and to filter rows.<br/><br/> 160 Clicking on the arrow will bring up this menu: <img src="contentfile/image/home/sortmenu.png"/>.<br/> 161 161 The first two choices, obviously, <b>sort</b> the table by the data in that column: low value to high value or vice versa.<br/><br/> 162 Clicking or hovering over <b>Columns</b> will show a list of the column names with checkboxes. <img src=" view/image/home/columnmenu.png"/><br/>162 Clicking or hovering over <b>Columns</b> will show a list of the column names with checkboxes. <img src="contentfile/image/home/columnmenu.png"/><br/> 163 163 Unchecking a box will hide that column from the table. Checking the box will bring it back.<br/><br/> 164 Clicking or hovering over <b>Filter</b> will show a selection box that lets you only show rows that contain certain values. <img src=" view/image/home/filtermenu.png"/>164 Clicking or hovering over <b>Filter</b> will show a selection box that lets you only show rows that contain certain values. <img src="contentfile/image/home/filtermenu.png"/> 165 165 </div> 166 166 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/CauseOfDeath.xml
r23267 r25268 38 38 <table cellpadding="0" cellspacing="10" width="100%"> 39 39 <tr> 40 <td><a href="query/NCHS33.html"><img src=" view/image/home/33.jpg" alt="33 Major Causes of Death"></img></a></td>40 <td><a href="query/NCHS33.html"><img src="contentfile/image/home/33.jpg" alt="33 Major Causes of Death"></img></a></td> 41 41 <td><b>ICD-9 and ICD-10 codes with comparability ratios for the 33 major cause of death groups</b></td> 42 42 </tr> … … 48 48 <table cellpadding="0" cellspacing="10" width="100%"> 49 49 <tr> 50 <td><a href="query/NCHS50.html"><img src=" view/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td>50 <td><a href="query/NCHS50.html"><img src="contentfile/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td> 51 51 <td><b>ICD-9 and ICD-10 codes with comparability ratios for the 50 rankable cause of death groups</b></td> 52 52 </tr> … … 58 58 <table cellpadding="0" cellspacing="10" width="100%"> 59 59 <tr> 60 <td><a href="query/NCHS113.html"><img src=" view/image/home/113.jpg" alt="113 Selected Causes of Death"></img></a></td>60 <td><a href="query/NCHS113.html"><img src="contentfile/image/home/113.jpg" alt="113 Selected Causes of Death"></img></a></td> 61 61 <td><b>ICD-9 and ICD-10 codes with comparability ratios for the 113 selected causes of death</b></td> 62 62 </tr> … … 68 68 <table cellpadding="0" cellspacing="10" width="100%"> 69 69 <tr> 70 <td><a href="https://www.cdc.gov/nchs/nvss/instruction_manuals.htm"><img src=" view/image/home/CDC3.jpg" alt="Updated ICD-10 Codes"></img></a></td>70 <td><a href="https://www.cdc.gov/nchs/nvss/instruction_manuals.htm"><img src="contentfile/image/home/CDC3.jpg" alt="Updated ICD-10 Codes"></img></a></td> 71 71 <td><b>Updated ICD-10 codes</b>: See Most Recent Manual Part 9 on<a href="https://www.cdc.gov/nchs/nvss/instruction_manuals.htm"> 72 72 https://www.cdc.gov/nchs/nvss/instruction_manuals.htm</a></td> … … 79 79 <table cellpadding="0" cellspacing="10" width="100%"> 80 80 <tr> 81 <td><a href="https://www.cdc.gov/nchs/icd/terrorism_code.htm"><img src=" view/image/home/U.jpg" alt="Terrorism Codes"></img></a></td>81 <td><a href="https://www.cdc.gov/nchs/icd/terrorism_code.htm"><img src="contentfile/image/home/U.jpg" alt="Terrorism Codes"></img></a></td> 82 82 <td><b>ICD codes for terrorism were added in 2002 and are preceded with '*'.</b> See 83 83 <a href="https://www.cdc.gov/nchs/icd/terrorism_code.htm"> … … 89 89 </table--> 90 90 <!-- 91 <b><a href="query/NCHS33.html"><img src=" view/image/home/33.jpg" alt="33 Major Causes of Death"></img></a>91 <b><a href="query/NCHS33.html"><img src="contentfile/image/home/33.jpg" alt="33 Major Causes of Death"></img></a> 92 92 ICD-9 and ICD-10 codes with comparability ratios for the 33 major cause of death groups</b> 93 93 -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/ConfidenceInterval.xml
r23267 r25268 33 33 have wider confidence intervals. 34 34 <br/><br/> 35 <img src="../ view/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/>35 <img src="../contentfile/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/> 36 36 Even for complete count datasets, such as birth and death certificate datasets, random 37 37 fluctuations over time will yield estimates that are not <a href="home/Glossary.html#R"> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/ContactInformation.xml
r23267 r25268 166 166 <td style="width:20% vertical-align:bottom"> 167 167 <a href="http://nj.gov/health/epht" target="_blank" title="Go to EPHT site"> 168 <img src=" view/image/home/NewJersey_Tracking.png" style="display:block; padding:15px 15px 15px 15px; width:90%" title="NJEPHT logo" alt="NJEPHT"/></a>168 <img src="contentfile/image/home/NewJersey_Tracking.png" style="display:block; padding:15px 15px 15px 15px; width:90%" title="NJEPHT logo" alt="NJEPHT"/></a> 169 169 </td> 170 170 <td width="80%"> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/CopyGraphs.xml
r23267 r25268 24 24 25 25 <CONTENT> 26 These directions are for <strong>Windows 7</strong>. Other operating systems may not have the <strong>Snipping Tool</strong>, which looks like this: <img src="../ view/image/home/Snipping-tool-icon.png" alt="Windows snipping tool icon" width="50" title="Windows Snipping Tool"/>26 These directions are for <strong>Windows 7</strong>. Other operating systems may not have the <strong>Snipping Tool</strong>, which looks like this: <img src="../contentfile/image/home/Snipping-tool-icon.png" alt="Windows snipping tool icon" width="50" title="Windows Snipping Tool"/> 27 27 28 28 <br/><br/> … … 30 30 <li>Make sure the graph you want to copy is visible on your screen.</li><br/> 31 31 32 <li>Go to your computer's <strong>Start</strong> menu <img src="../ view/image/home/Windows-Start-Orb.png" alt="Start menu icon" width="25" title="Start menu icon"/> (in the lower left corner of your computer screen, unless you've moved it)<br/> and select <strong>Snipping Tool</strong>. <img src="../view/image/home/Snipping-tool-icon.png" alt="Windows snipping tool icon" width="40" title="Windows Snipping Tool"/><br/><br/>32 <li>Go to your computer's <strong>Start</strong> menu <img src="../contentfile/image/home/Windows-Start-Orb.png" alt="Start menu icon" width="25" title="Start menu icon"/> (in the lower left corner of your computer screen, unless you've moved it)<br/> and select <strong>Snipping Tool</strong>. <img src="../contentfile/image/home/Snipping-tool-icon.png" alt="Windows snipping tool icon" width="40" title="Windows Snipping Tool"/><br/><br/> 33 33 If it's not showing, click <strong>All Programs</strong><br/> 34 <img src="../ view/image/home/AllPrograms.png" alt="All Programs" width="300" title="All Programs"/><br/><br/>34 <img src="../contentfile/image/home/AllPrograms.png" alt="All Programs" width="300" title="All Programs"/><br/><br/> 35 35 and then the <strong>Accessories</strong> folder<br/> 36 <img src="../ view/image/home/AccessoriesFolder.png" alt="Accessories folder" width="300" title="Accessories folder"/>.<br/><br/>36 <img src="../contentfile/image/home/AccessoriesFolder.png" alt="Accessories folder" width="300" title="Accessories folder"/>.<br/><br/> 37 37 You should find <strong>Snipping Tool</strong> in there.</li><br/> 38 38 39 39 <li>The <strong>Snipping Tool</strong> pop-up has several choices under <strong>New</strong>. Select <strong>Rectangular Snip</strong>.<br/> 40 <img src="../ view/image/home/SnippingPopUp.png" alt="SnippingPopUp" width="300" title="SnippingPopUp"/></li><br/>40 <img src="../contentfile/image/home/SnippingPopUp.png" alt="SnippingPopUp" width="300" title="SnippingPopUp"/></li><br/> 41 41 42 42 <li>As you put your mouse near the graph you want to copy, you should see a big plus sign. Put that at one of the corners of the graph.</li><br/> … … 47 47 <li>You can do one of two things:</li> 48 48 <ul> 49 <li>Click <strong>Save</strong> (the <span style="color:purple">purple floppy disk</span> icon) to save the snip as a file.<br/><img src="../ view/image/home/SaveSnip.png" alt="floppy disk icon" width="400" title="Save Snip"/></li>49 <li>Click <strong>Save</strong> (the <span style="color:purple">purple floppy disk</span> icon) to save the snip as a file.<br/><img src="../contentfile/image/home/SaveSnip.png" alt="floppy disk icon" width="400" title="Save Snip"/></li> 50 50 <li>Go to the document you want to put the graph in and <strong>Paste</strong> (Ctrl-V) there. The graph should appear in your document.</li> 51 51 </ul> … … 83 83 </ol><br/> 84 84 85 <h2>Easy (capture the entire browser window - 2 steps) - <a href="view/sharedstatic/InstructionsDirect.ppt">Direct Method</a> <a href="view/sharedstatic/InstructionsDirect.ppt"><img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></a></h2>85 <h2>Easy (capture the entire browser window - 2 steps) - <a href="view/sharedstatic/InstructionsDirect.ppt">Direct Method</a> <a href="view/sharedstatic/InstructionsDirect.ppt"><img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></a></h2> 86 86 <ul> 87 87 <li>This method is the simplest method. It uses the Print Screen button and the Paste function.</li> … … 90 90 91 91 92 <h2>Still Pretty Easy (3-4 steps) - <a href="view/sharedstatic/InstructionsPaint.ppt">Paint Method</a> <a href="view/sharedstatic/InstructionsPaint.ppt"><img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></a></h2>92 <h2>Still Pretty Easy (3-4 steps) - <a href="view/sharedstatic/InstructionsPaint.ppt">Paint Method</a> <a href="view/sharedstatic/InstructionsPaint.ppt"><img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></a></h2> 93 93 <ul> 94 94 <li>This method uses the Print Screen button and the Paint program … … 103 103 104 104 <div class="Note"> 105 <img src="../ view/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/>105 <img src="../contentfile/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/> 106 106 Direct Method and Paint Method Powerpoint instructions are provided by the Utah Department of Health and 107 107 are shown in NJSHAD's parent application, IBIS-PH. -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/DemoRequest.xml
r23267 r25268 93 93 <div class="panel-body"> 94 94 <ul> 95 <li><img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/><a href="view/sharedstatic/LocalHealthWebinars2017Sept.pdf">NJSHAD Overview</a> (Sept 2017) </li><br/>96 <!--li><img src="../ view/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/> <a href="view/sharedstatic/DemoWebinar.mp4" download="NJSHAD_demo_webinar_Sep2017.mp4">NJSHAD Demo Webinar</a> (Sept 2017) You must download the MP4 file. Webinar will not play in browser. Video has been edited down to 53 minutes, so it starts and ends abruptly.</li><br/-->95 <li><img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/><a href="view/sharedstatic/LocalHealthWebinars2017Sept.pdf">NJSHAD Overview</a> (Sept 2017) </li><br/> 96 <!--li><img src="../contentfile/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/> <a href="view/sharedstatic/DemoWebinar.mp4" download="NJSHAD_demo_webinar_Sep2017.mp4">NJSHAD Demo Webinar</a> (Sept 2017) You must download the MP4 file. Webinar will not play in browser. Video has been edited down to 53 minutes, so it starts and ends abruptly.</li><br/--> 97 97 <li><a href="home/Help.html#presos">More presentations</a></li> 98 98 </ul> … … 108 108 <br/><br/> 109 109 <div class="Note"> 110 <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/>110 <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/> 111 111 Clicking this link will take you to a PDF document.<br/> 112 <!--img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/> Clicking this link will take you off the NJSHAD website.<br/-->113 <img src="../ view/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/>112 <!--img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/> Clicking this link will take you off the NJSHAD website.<br/--> 113 <img src="../contentfile/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/> 114 114 MP4 files will not play in browser without plug-in. Download and play in Windows Media Player or other video viewer on your computer. 115 115 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/Export.xml
r23267 r25268 74 74 <!--h1>Using the Snipping Tool</h1--> 75 75 You can also copy and paste an NJSHAD table as an image use the Snipping Tool. <a href="home/CopyGraphs.html">More info...</a> 76 <img src="../ view/image/home/snippingtool.png" align="right" alt="Windows snipping tool icon" width="50" title="Windows Snipping Tool"/><br/><br/>76 <img src="../contentfile/image/home/snippingtool.png" align="right" alt="Windows snipping tool icon" width="50" title="Windows Snipping Tool"/><br/><br/> 77 77 </div> 78 78 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/Help.xml
r23267 r25268 60 60 <li><a href="query/BRFSSQueryTechNotes.html">BRFSS Methodology Changes in 2011</a></li> 61 61 <li><a href="home/CauseOfDeath.html">Causes of Death: Groups, Ranking, and Leading Causes</a></li> 62 <li><a href="http://www.metric-conversions.org/weight/grams-to-pounds.htm" target="_blank">Convert Grams to Pounds</a> <a href="http://www.metric-conversions.org/weight/grams-to-pounds.htm" target="_blank"><img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li>62 <li><a href="http://www.metric-conversions.org/weight/grams-to-pounds.htm" target="_blank">Convert Grams to Pounds</a> <a href="http://www.metric-conversions.org/weight/grams-to-pounds.htm" target="_blank"><img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li> 63 63 <br/> 64 64 <li><a href="home/ICDHelp.html">ICD (International Classification of Diseases) Codes and Information</a></li> … … 76 76 <div class="panel-body"> 77 77 <ul> 78 <li><a href="view/sharedstatic/SHADBrochure.pdf">NJSHAD Brochure</a> (updated: June 2018) <a href="view/sharedstatic/SHADBrochure.pdf"><img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li>79 <li><a href="view/sharedstatic/NAPHSISposter2019.pdf">Data Visualization Poster</a> (June 2019) <a href="view/sharedstatic/NAPHSISposter2019.pdf"><img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li>80 <li><a href="view/sharedstatic/LocalHealthWebinars2017Sept.pdf">Local Health Department Webinar Series</a> (Sept 2017) <a href="view/sharedstatic/LocalHealthWebinars2017Sept.pdf"><img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li>81 <li><a href="view/sharedstatic/NAPHSIS20170607.pdf">Using NJSHAD for Enviromental Public Health Tracking</a> (June 2017) <a href="view/sharedstatic/NAPHSIS20170607.pdf"><img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li>82 <li><a href="view/sharedstatic/HealthEquityForum20170425.pdf">Using NJSHAD for Health Disparity Data</a> (April 2017) <a href="view/sharedstatic/HealthEquityForum20170425.pdf"><img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li>83 <!--li><a href="view/sharedstatic/DemoWebinar.mp4" download="NJSHAD_demo_webinar_Sep2017.mp4">NJSHAD Demo Webinar</a> (Sept 2017) <img src="../ view/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/> You must download the MP4 file. Webinar will not play in browser. Video has been edited down to 53 minutes, so it starts and ends abruptly.</li-->84 <!--li><a href="http://ophponline.umdnj.edu/mediasite/Viewer/?peid=dfef0ffdb4384e40a922afce6159c2ea1d" target="_blank">NJSHAD (v1.8) Step-by-Step Demonstration - Webinar/Video</a> (Sept 2011) <a href="http://ophponline.umdnj.edu/mediasite/Viewer/?peid=dfef0ffdb4384e40a922afce6159c2ea1d" target="_blank"><img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li-->78 <li><a href="view/sharedstatic/SHADBrochure.pdf">NJSHAD Brochure</a> (updated: June 2018) <a href="view/sharedstatic/SHADBrochure.pdf"><img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li> 79 <li><a href="view/sharedstatic/NAPHSISposter2019.pdf">Data Visualization Poster</a> (June 2019) <a href="view/sharedstatic/NAPHSISposter2019.pdf"><img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li> 80 <li><a href="view/sharedstatic/LocalHealthWebinars2017Sept.pdf">Local Health Department Webinar Series</a> (Sept 2017) <a href="view/sharedstatic/LocalHealthWebinars2017Sept.pdf"><img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li> 81 <li><a href="view/sharedstatic/NAPHSIS20170607.pdf">Using NJSHAD for Enviromental Public Health Tracking</a> (June 2017) <a href="view/sharedstatic/NAPHSIS20170607.pdf"><img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li> 82 <li><a href="view/sharedstatic/HealthEquityForum20170425.pdf">Using NJSHAD for Health Disparity Data</a> (April 2017) <a href="view/sharedstatic/HealthEquityForum20170425.pdf"><img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/></a></li> 83 <!--li><a href="view/sharedstatic/DemoWebinar.mp4" download="NJSHAD_demo_webinar_Sep2017.mp4">NJSHAD Demo Webinar</a> (Sept 2017) <img src="../contentfile/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/> You must download the MP4 file. Webinar will not play in browser. Video has been edited down to 53 minutes, so it starts and ends abruptly.</li--> 84 <!--li><a href="http://ophponline.umdnj.edu/mediasite/Viewer/?peid=dfef0ffdb4384e40a922afce6159c2ea1d" target="_blank">NJSHAD (v1.8) Step-by-Step Demonstration - Webinar/Video</a> (Sept 2011) <a href="http://ophponline.umdnj.edu/mediasite/Viewer/?peid=dfef0ffdb4384e40a922afce6159c2ea1d" target="_blank"><img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li--> 85 85 </ul> 86 86 </div> … … 108 108 <li><a href="home/ConfidenceInterval.html">Confidence Intervals</a></li> 109 109 <li><a href="home/ReliabilityValidity.html">Reliability and Validity</a></li> 110 <li><a href="http://www.animatedsoftware.com/statglos/statglos.htm#index" target="_blank">Statistical Glossary</a> <a href="http://www.animatedsoftware.com/statglos/statglos.htm#index" target="_blank"><img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li>110 <li><a href="http://www.animatedsoftware.com/statglos/statglos.htm#index" target="_blank">Statistical Glossary</a> <a href="http://www.animatedsoftware.com/statglos/statglos.htm#index" target="_blank"><img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li> 111 111 <li><a href="home/MapChoroClasses.html">Maps and Data Grouping Methods</a></li> 112 112 </ul> … … 122 122 <li><a href="Export.html">Printing and Exporting NJSHAD Tables</a></li> 123 123 <li><a href="MapDownloadJSON.html">Downloading and Using GeoJSON Files</a></li> 124 <li><a href="CopyGraphs.html">Copy/Paste procedure for NJSHAD graphics into Powerpoint, Word, or other applications</a><img src="../ view/image/home/snippingtool.png" align="right" alt="Windows snipping tool icon" width="50" title="Windows Snipping Tool"/></li>124 <li><a href="CopyGraphs.html">Copy/Paste procedure for NJSHAD graphics into Powerpoint, Word, or other applications</a><img src="../contentfile/image/home/snippingtool.png" align="right" alt="Windows snipping tool icon" width="50" title="Windows Snipping Tool"/></li> 125 125 </ul> 126 126 </div> … … 144 144 145 145 <div class="Note"> 146 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/>146 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/> 147 147 Clicking this link will take you off the NJSHAD website.<br/> 148 <!--img src="../ view/image/powerpoint.png" alt="Powerpoint icon" width="16" height="16" title="Powerpoint logo"/>148 <!--img src="../contentfile/image/powerpoint.png" alt="Powerpoint icon" width="16" height="16" title="Powerpoint logo"/> 149 149 Clicking this link will take you to a Powerpoint document.<br/--> 150 <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/>150 <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/> 151 151 Clicking this link will take you to a PDF document.<br/> 152 <img src="../ view/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/>152 <img src="../contentfile/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/> 153 153 MP4 files will not play in browser without plug-in. Download and play in Windows Media Player or other video viewer on your computer. 154 154 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/ICDHelp.xml
r23267 r25268 221 221 222 222 <div class="Note"> 223 <img src="../ view/image/external_link.png" alt="info icon" width="16" height="16" title="Additional Information"/>223 <img src="../contentfile/image/external_link.png" alt="info icon" width="16" height="16" title="Additional Information"/> 224 224 Clicking the links on this page will take you off the NJSHAD website. Use your browser's Back button to return 225 225 to NJSHAD. -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/ICDLists.xml
r23267 r25268 73 73 74 74 <div class="Note"> 75 <img src="../ view/image/external_link.png" alt="info icon" width="16" height="16" title="Additional Information"/>75 <img src="../contentfile/image/external_link.png" alt="info icon" width="16" height="16" title="Additional Information"/> 76 76 Clicking any of the links above will take you off the NJSHAD website. Use your browser's Back button to return 77 77 to NJSHAD. -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/LEandYPLL.xml
r23267 r25268 44 44 45 45 <ul> 46 <li><a href="view/sharedstatic/LifeExpectancy.xls" class="Bold">Life Tables with 2000 k- and s-values</a> <a href="view/sharedstatic/LifeExpectancy.xls"> <img src="../ view/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a>.</li>46 <li><a href="view/sharedstatic/LifeExpectancy.xls" class="Bold">Life Tables with 2000 k- and s-values</a> <a href="view/sharedstatic/LifeExpectancy.xls"> <img src="../contentfile/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a>.</li> 47 47 </ul> 48 48 <br/> … … 50 50 51 51 <ul> 52 <li><a href="view/sharedstatic/AbridgedLifeTable.xls" class="Bold">Abridged Life Table</a> <a href="view/sharedstatic/AbridgedLifeTable.xls"> <img src="../ view/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a></li>52 <li><a href="view/sharedstatic/AbridgedLifeTable.xls" class="Bold">Abridged Life Table</a> <a href="view/sharedstatic/AbridgedLifeTable.xls"> <img src="../contentfile/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a></li> 53 53 <li><a href="indicator/complete_profile/LifeExpectancy.html" class="Bold">More Life Expectancy Info</a></li> 54 54 </ul> … … 67 67 Years of potential life lost (<a href="indicator/CatMort.html" class="Bold">YPLL</a>) is a measure of the number of years not lived by each individual who died before reaching a predetermined age, usually 65 or 75. (NCHS switched to YPLL before 75 in 1996 and CHS switched in 2000.) This measure weights deaths at younger ages more heavily than deaths at older ages; the younger the age at death, the greater the number of years of potential life lost. The YPLL for a population is computed as the sum of all the individual YPLL for individuals who died during a specific time period. In the following YPLL Excel worksheets, enter the appropriate age-specific numbers of deaths and the population under age 65 or 75 for the year, geographic area, race, sex, and/or cause of death of interest in the gray cells and the resulting YPLL rate will appear in the red cell. 68 68 <ul> 69 <li><a href="view/sharedstatic/YPLL65.xls" class="Bold">YPLL Before Age 65</a> <a href="view/sharedstatic/YPLL65.xls"> <img src="../ view/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a></li>70 <li><a href="view/sharedstatic/YPLL75.xls" class="Bold">YPLL Before Age 75</a> <a href="view/sharedstatic/YPLL75.xls"> <img src="../ view/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a></li>69 <li><a href="view/sharedstatic/YPLL65.xls" class="Bold">YPLL Before Age 65</a> <a href="view/sharedstatic/YPLL65.xls"> <img src="../contentfile/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a></li> 70 <li><a href="view/sharedstatic/YPLL75.xls" class="Bold">YPLL Before Age 75</a> <a href="view/sharedstatic/YPLL75.xls"> <img src="../contentfile/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a></li> 71 71 <li><a href="indicator/complete_profile/YPLL75.html" class="Bold">More YPLL Info</a></li> 72 72 </ul> … … 83 83 <li><a href="home/Rate.html#Spec" class="Bold">Age- and Sex-Specific Rates</a></li> 84 84 <li><a href="home/AARate.html" class="Bold">Age-Adjusted Rates</a></li> 85 <li><a href="view/sharedstatic/AA2000Std.xls" class="Bold">Age-adjustment Worksheet</a> based on the 2000 Standard Population <a href="view/sharedstatic/AA2000Std.xls"> <img src="../ view/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a></li>85 <li><a href="view/sharedstatic/AA2000Std.xls" class="Bold">Age-adjustment Worksheet</a> based on the 2000 Standard Population <a href="view/sharedstatic/AA2000Std.xls"> <img src="../contentfile/image/excel.gif" alt="Excel icon" width="14" height="14" title="Download MS Excel spreadsheet"/></a></li> 86 86 </ul> 87 87 </div> … … 89 89 <br/> 90 90 <div class="Note"> 91 <img src="../ view/image/excel.gif" alt="Excel icon" width="16" height="16" title="Excel logo"/>91 <img src="../contentfile/image/excel.gif" alt="Excel icon" width="16" height="16" title="Excel logo"/> 92 92 Clicking this link will take you to an Excel spreadsheet. 93 93 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/MapDownloadJSON.xml
r23267 r25268 15 15 <ul> 16 16 <li>To download GIS data from NJSHAD, first create a query that produces a map. In the upper right-hand corner 17 of the map view, open the "Layers Control" menu <img src=" view/image/home/layers.png"17 of the map view, open the "Layers Control" menu <img src="contentfile/image/home/layers.png" 18 18 title="Layers Control icon" alt="NJSHAD Map Layers Control icon"/> if it is closed. 19 A blue "Download Layer" button <img src=" view/image/icon/16/download_blue-box.png" title="Download Layer icon"19 A blue "Download Layer" button <img src="contentfile/image/icon/16/download_blue-box.png" title="Download Layer icon" 20 20 alt="NJSHAD Map Download Layer icon"/> will be visible next to the map layers that are available for download.<br/><br/></li> 21 21 -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/Marriages.xml
r23267 r25268 34 34 counts for 2005 to the present may be downloaded in 35 35 <a href="view/sharedstatic/Marriages.xls" class="Bold">Excel format</a>. 36 <a href="view/sharedstatic/Marriages.xls"> <img src="../ view/image/excel.gif" alt="Excel icon" width="16" height="16" title="Download MS Excel spreadsheet"/></a>36 <a href="view/sharedstatic/Marriages.xls"> <img src="../contentfile/image/excel.gif" alt="Excel icon" width="16" height="16" title="Download MS Excel spreadsheet"/></a> 37 37 <br/><br/> 38 38 -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/QuickLinks.xml
r23267 r25268 62 62 font-weight: bold; 63 63 padding: 15px; 64 background: url('../ view/image/home/reds.png') no-repeat center center;64 background: url('../contentfile/image/home/reds.png') no-repeat center center; 65 65 } 66 66 td.QuickLinksB … … 70 70 font-weight: bold; 71 71 padding: 15px; 72 background: url('../ view/image/home/blues.png') no-repeat center center;72 background: url('../contentfile/image/home/blues.png') no-repeat center center; 73 73 } 74 74 td.QuickLinksG … … 78 78 font-weight: bold; 79 79 padding: 15px; 80 background: url('../ view/image/home/greens.png') no-repeat center center;80 background: url('../contentfile/image/home/greens.png') no-repeat center center; 81 81 } 82 82 h25.all -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/Rate.xml
r23267 r25268 53 53 54 54 <div class="Note"> 55 <img src="../ view/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/>55 <img src="../contentfile/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/> 56 56 Many measures used in public health assessment specify a time period of one or more <text class="Bold">calendar years</text>. 57 57 This is because many public health numerator datasets have calendar year production periods. But … … 106 106 this: <br/> 107 107 108 <img src="../ view/image/formula_crude_rate3.gif" alt="info icon" width="371" height="104" title="Formula for Crude Rate"/>108 <img src="../contentfile/image/formula_crude_rate3.gif" alt="info icon" width="371" height="104" title="Formula for Crude Rate"/> 109 109 110 110 <br/> … … 204 204 205 205 <div class="Note"> 206 <img src="../ view/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/>206 <img src="../contentfile/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/> 207 207 Looking at rates within groups is also called "stratification." In Table 2, the population has been stratified 208 208 by age and sex. The data in Table 2 also show how useful stratification can be. Not only are the suicide … … 211 211 212 212 <!--div class="Note"> 213 <img src="../ view/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/>213 <img src="../contentfile/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/> 214 214 The <a href="home/Glossary.html#C">crude mortality rate</a> for a population depends on the mortality 215 215 rate in each age group as well as on the proportion of people in each age group. For instance, -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/ReliabilityValidity.xml
r23267 r25268 62 62 63 63 <div class="Note"> 64 <img src="../ view/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/>64 <img src="../contentfile/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/> 65 65 Rates that fluctuate over time, in the absence of changes in underlying risk, are considered 66 66 unreliable. Such rates are also commonly referred to as "unstable." Since the underlying risk … … 107 107 measure is both reliable and valid. <br/><br/> 108 108 109 <img src=" view/image/reliability_validity.png" style="float:center" title="Bulls-eye showing reliability and validity concepts" alt="bullseyes"/>109 <img src="contentfile/image/reliability_validity.png" style="float:center" title="Bulls-eye showing reliability and validity concepts" alt="bullseyes"/> 110 110 111 111 <br/><br/> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/Search.xml
r23267 r25268 74 74 </ol> 75 75 76 <a href="javascript:onClick=document.form.submit();" class="Image"><img src=" view/image/button/submit.gif" alt="Submit" title="Click this button to submit your search." border="0"/></a>77 <a href="javascript:onClick=document.form.reset();" class="Image"><img src=" view/image/button/reset.gif" alt="Reset" title="Click this button to clear/reset the page to the way it was before editing." border="0"/></a>76 <a href="javascript:onClick=document.form.submit();" class="Image"><img src="contentfile/image/button/submit.gif" alt="Submit" title="Click this button to submit your search." border="0"/></a> 77 <a href="javascript:onClick=document.form.reset();" class="Image"><img src="contentfile/image/button/reset.gif" alt="Reset" title="Click this button to clear/reset the page to the way it was before editing." border="0"/></a> 78 78 </form> 79 79 -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/SiteMap.xml
r23267 r25268 129 129 <h2 style="text-align:center">NJSHAD Site Tree</h2> 130 130 <a href="view/sharedstatic/SiteTree.pdf" target="_blank" title="Go to NJSHAD Site Tree PDF"> 131 <img src=" view/image/home/SiteTree.png" style="vertical-align:text-top; margin:0; height:250px" title="Click for larger view" alt="Site Tree"/></a>131 <img src="contentfile/image/home/SiteTree.png" style="vertical-align:text-top; margin:0; height:250px" title="Click for larger view" alt="Site Tree"/></a> 132 132 </td> 133 133 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/StatDefs.xml
r23267 r25268 88 88 </section> 89 89 </div> 90 <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/> All the links above are in PDF format.<br/><br/>90 <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/> All the links above are in PDF format.<br/><br/> 91 91 </CONTENT> 92 92 </HTML_CONTENT> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/Timeliness.xml
r23267 r25268 44 44 by a few years.<br/> 45 45 <a href="https://docs.wixstatic.com/ugd/b08966_83b7bfa9fef54335a0f0240061e984d5.pdf" target="_blank" title="Go to PDF report"> 46 <img class="top" src=" view/image/home/MoreBetterFaster.png" style="float:right; margin:0; height:100px" title="MoreBetterFaster" alt="MoreBetterFaster report cover"/></a>46 <img class="top" src="contentfile/image/home/MoreBetterFaster.png" style="float:right; margin:0; height:100px" title="MoreBetterFaster" alt="MoreBetterFaster report cover"/></a> 47 47 <br/><br/> 48 48 More information about and an in-depth analysis of the challenge of -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/UserStories.xml
r23267 r25268 33 33 <tr> 34 34 <td> 35 <img src=" view/image/home/hooray2.png" style="align:left; vertical-align:text-top; margin:0;margin-left:15px;margin-right:15px; width:700px;" title="hooray" alt="HoorayImage"/>35 <img src="contentfile/image/home/hooray2.png" style="align:left; vertical-align:text-top; margin:0;margin-left:15px;margin-right:15px; width:700px;" title="hooray" alt="HoorayImage"/> 36 36 </td> 37 37 <td> … … 39 39 <b>Do you have an NJSHAD success story to share? <a href="home/ContactInformation.html">Contact us!</a></b> 40 40 <br/><br/><br/> 41 <div style="font-size:0.85em;"><img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="14" height="14" title="PDF logo"/> All stories linked below are in Adobe Acrobat PDF format.</div>41 <div style="font-size:0.85em;"><img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="14" height="14" title="PDF logo"/> All stories linked below are in Adobe Acrobat PDF format.</div> 42 42 <br/> 43 43 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/home/Welcome.xml
r23267 r25268 19 19 .slick-slider 20 20 { 21 background: transparent url(" view/image/home/sunset1050t.png") 0 0 no-repeat;22 background-image: url(" view/image/home/sunset1050t.png"), url("../view/image/home/sunset1050t.png");21 background: transparent url("contentfile/image/home/sunset1050t.png") 0 0 no-repeat; 22 background-image: url("contentfile/image/home/sunset1050t.png"), url("../contentfile/image/home/sunset1050t.png"); 23 23 } 24 24 25 25 .slick-slider:hover 26 26 { 27 background: transparent url(" view/image/home/sunset1050tt.png") 0 0 no-repeat;28 background-image: url(" view/image/home/sunset1050tt.png"), url("../view/image/home/sunset1050tt.png");27 background: transparent url("contentfile/image/home/sunset1050tt.png") 0 0 no-repeat; 28 background-image: url("contentfile/image/home/sunset1050tt.png"), url("../contentfile/image/home/sunset1050tt.png"); 29 29 } 30 30 … … 297 297 <a href="topic/Access.html"> 298 298 <div class="Index Wide"> 299 <img src=" view/image/topic/wUmbrella.png" alt="HealthCoverage icon" title="Go to Health Insurance/Access to Care Topic Page"/><br/>Access to Care/<br/>Health Insurance299 <img src="contentfile/image/topic/wUmbrella.png" alt="HealthCoverage icon" title="Go to Health Insurance/Access to Care Topic Page"/><br/>Access to Care/<br/>Health Insurance 300 300 </div> 301 301 </a> … … 305 305 <a href="topic/AirQuality.html"> 306 306 <div class="Index Wide"> 307 <img src=" view/image/topic/wCloud.png" alt="Air icon" title="Go to Air Quality Topic Page"/><br/><br/>Air Quality307 <img src="contentfile/image/topic/wCloud.png" alt="Air icon" title="Go to Air Quality Topic Page"/><br/><br/>Air Quality 308 308 </div> 309 309 </a> … … 313 313 <a href="topic/Alcohol.html"> 314 314 <div class="Index Wide"> 315 <img src=" view/image/topic/wMartini.png" alt="Martini icon" title="Go to Alcohol Topic Page"/><br/><br/>Alcohol315 <img src="contentfile/image/topic/wMartini.png" alt="Martini icon" title="Go to Alcohol Topic Page"/><br/><br/>Alcohol 316 316 </div> 317 317 </a> … … 321 321 <a href="topic/Asthma.html"> 322 322 <div class="Index Wide"> 323 <img src=" view/image/topic/wLungs.png" alt="Lung icon" title="Go to Asthma/Respiratory Topic Page"/><br/><br/>Asthma/COPD323 <img src="contentfile/image/topic/wLungs.png" alt="Lung icon" title="Go to Asthma/Respiratory Topic Page"/><br/><br/>Asthma/COPD 324 324 </div> 325 325 </a> … … 329 329 <a href="topic/Births.html"> 330 330 <div class="Index Wide"> 331 <img src=" view/image/topic/wMomBaby.png" alt="Pram icon" title="Go to Births/Maternity Topic Page"/><br/><br/>Births/Maternity331 <img src="contentfile/image/topic/wMomBaby.png" alt="Pram icon" title="Go to Births/Maternity Topic Page"/><br/><br/>Births/Maternity 332 332 </div> 333 333 </a> … … 339 339 <a href="topic/BrainCNS.html"> 340 340 <div class="Index Wide"> 341 <img src=" view/image/topic/wBrain.png" alt="Brain icon" title="Go to Brain/Nevous System Topic Page"/><br/>Brain and Nervous System341 <img src="contentfile/image/topic/wBrain.png" alt="Brain icon" title="Go to Brain/Nevous System Topic Page"/><br/>Brain and Nervous System 342 342 </div> 343 343 </a> … … 347 347 <a href="topic/Cancer.html"> 348 348 <div class="Index Wide"> 349 <img src=" view/image/topic/wRibbon.png" alt="Ribbon icon" title="Go to Cancer Topic Page"/><br/><br/>Cancer349 <img src="contentfile/image/topic/wRibbon.png" alt="Ribbon icon" title="Go to Cancer Topic Page"/><br/><br/>Cancer 350 350 </div> 351 351 </a> … … 355 355 <a href="topic/CVD.html"> 356 356 <div class="Index Wide"> 357 <img src=" view/image/topic/wCardio.png" alt="Cardio icon" title="Go to Cardiovascular Disease Topic Page"/><br/>Cardiovascular Disease357 <img src="contentfile/image/topic/wCardio.png" alt="Cardio icon" title="Go to Cardiovascular Disease Topic Page"/><br/>Cardiovascular Disease 358 358 </div> 359 359 </a> … … 363 363 <a href="topic/ChildHealth.html"> 364 364 <div class="Index Wide"> 365 <img src=" view/image/topic/wKids.png" alt="Kids icon" title="Go to Child Health Topic Page"/><br/>Child/Adolescent Health365 <img src="contentfile/image/topic/wKids.png" alt="Kids icon" title="Go to Child Health Topic Page"/><br/>Child/Adolescent Health 366 366 </div> 367 367 </a> … … 371 371 <a href="topic/Demographics.html"> 372 372 <div class="Index Wide"> 373 <img src=" view/image/topic/wDemog.png" alt="PieChart icon" title="Go to Demographic Characteristics Topic Page"/><br/>Demographic Characteristics373 <img src="contentfile/image/topic/wDemog.png" alt="PieChart icon" title="Go to Demographic Characteristics Topic Page"/><br/>Demographic Characteristics 374 374 </div> 375 375 </a> … … 381 381 <a href="topic/Diabetes.html"> 382 382 <div class="Index Wide"> 383 <img src=" view/image/topic/wFingerStick.png" alt="FingerStick icon" title="Go to Diabetes Topic Page"/><br/>Diabetes/<br/>Kidney Disease383 <img src="contentfile/image/topic/wFingerStick.png" alt="FingerStick icon" title="Go to Diabetes Topic Page"/><br/>Diabetes/<br/>Kidney Disease 384 384 </div> 385 385 </a> … … 389 389 <a href="topic/Environment.html"> 390 390 <div class="Index Wide"> 391 <img src=" view/image/topic/wTree.png" alt="Tree icon" title="Go to Physical Environment Topic Page"/><br/><br/>Environment391 <img src="contentfile/image/topic/wTree.png" alt="Tree icon" title="Go to Physical Environment Topic Page"/><br/><br/>Environment 392 392 </div> 393 393 </a> … … 397 397 <a href="topic/Immunization.html"> 398 398 <div class="Index Wide"> 399 <img src=" view/image/topic/wSyringe.png" alt="Shot icon" title="Go to Immunization Topic Page"/><br/><br/>Immunization399 <img src="contentfile/image/topic/wSyringe.png" alt="Shot icon" title="Go to Immunization Topic Page"/><br/><br/>Immunization 400 400 </div> 401 401 </a> … … 405 405 <a href="topic/InfectiousDisease.html"> 406 406 <div class="Index Wide"> 407 <img src=" view/image/topic/wCoughing.png" alt="Coughing icon" title="Go to Infectious Disease Topic Page"/><br/>Infectious/<br/>Communicable Diseases407 <img src="contentfile/image/topic/wCoughing.png" alt="Coughing icon" title="Go to Infectious Disease Topic Page"/><br/>Infectious/<br/>Communicable Diseases 408 408 </div> 409 409 </a> … … 413 413 <a href="topic/Injury.html"> 414 414 <div class="Index Wide"> 415 <img src=" view/image/topic/wCrutches.png" alt="PersonCrutches icon" title="Go to Injury and Violence Topic Page"/><br/><br/>Injury and Violence415 <img src="contentfile/image/topic/wCrutches.png" alt="PersonCrutches icon" title="Go to Injury and Violence Topic Page"/><br/><br/>Injury and Violence 416 416 </div> 417 417 </a> … … 423 423 <a href="topic/MentalHealth.html"> 424 424 <div class="Index Wide"> 425 <img src=" view/image/topic/wYinYang.png" alt="YinYang icon" title="Go to Mental Health Topic Page"/><br/><br/>Mental Health425 <img src="contentfile/image/topic/wYinYang.png" alt="YinYang icon" title="Go to Mental Health Topic Page"/><br/><br/>Mental Health 426 426 </div> 427 427 </a> … … 431 431 <a href="topic/Mortality.html"> 432 432 <div class="Index Wide"> 433 <img src=" view/image/topic/wHeadstone.png" alt="Tombstone icon" title="Go to Mortality Topic Page"/><br/>Mortality and Leading Causes of Death433 <img src="contentfile/image/topic/wHeadstone.png" alt="Tombstone icon" title="Go to Mortality Topic Page"/><br/>Mortality and Leading Causes of Death 434 434 </div> 435 435 </a> … … 439 439 <a href="topic/Obesity.html"> 440 440 <div class="Index Wide"> 441 <img src=" view/image/topic/wWeightScale.png" alt="WeightScale icon" title="Go to Obesity and Related Factors Topic Page"/><br/>Nutrition, Obesity, and Physical Activity441 <img src="contentfile/image/topic/wWeightScale.png" alt="WeightScale icon" title="Go to Obesity and Related Factors Topic Page"/><br/>Nutrition, Obesity, and Physical Activity 442 442 </div> 443 443 </a> … … 447 447 <a href="topic/Occupational.html"> 448 448 <div class="Index Wide"> 449 <img src=" view/image/topic/wHardHat.png" alt="Hard hat icon" title="Go to Occupational Health Topic Page"/><br/><br/>Occupational Health449 <img src="contentfile/image/topic/wHardHat.png" alt="Hard hat icon" title="Go to Occupational Health Topic Page"/><br/><br/>Occupational Health 450 450 </div> 451 451 </a> … … 455 455 <a href="topic/Dental.html"> 456 456 <div class="Index Wide"> 457 <img src=" view/image/topic/wTooth.png" alt="Tooth icon" title="Go to Oral Health Topic Page"/><br/><br/>Oral Health457 <img src="contentfile/image/topic/wTooth.png" alt="Tooth icon" title="Go to Oral Health Topic Page"/><br/><br/>Oral Health 458 458 </div> 459 459 </a> … … 465 465 <a href="topic/OverallHealth.html"> 466 466 <div class="Index Wide"> 467 <img src=" view/image/topic/wFeelGood.png" alt="Ruler icon" title="Go to Overall Health Status Topic Page"/><br/><br/>Overall Health Status467 <img src="contentfile/image/topic/wFeelGood.png" alt="Ruler icon" title="Go to Overall Health Status Topic Page"/><br/><br/>Overall Health Status 468 468 </div> 469 469 </a> … … 473 473 <a href="topic/SubstanceUse.html"> 474 474 <div class="Index Wide"> 475 <img src=" view/image/topic/wPills.png" alt="Pills icon" title="Go to Substance Abuse Topic Page"/><br/><br/>Substance Abuse475 <img src="contentfile/image/topic/wPills.png" alt="Pills icon" title="Go to Substance Abuse Topic Page"/><br/><br/>Substance Abuse 476 476 </div> 477 477 </a> … … 481 481 <a href="topic/Tobacco.html"> 482 482 <div class="Index Wide"> 483 <img src=" view/image/topic/wNoSmoking.png" alt="Tobacco icon" title="Go to NoSmoking Topic Page"/><br/><br/>Tobacco483 <img src="contentfile/image/topic/wNoSmoking.png" alt="Tobacco icon" title="Go to NoSmoking Topic Page"/><br/><br/>Tobacco 484 484 </div> 485 485 </a> … … 489 489 <a href="topic/Water.html"> 490 490 <div class="Index Wide"> 491 <img src=" view/image/topic/wWater.png" alt="Water icon" title="Go to Water Quality Topic Page"/><br/><br/>Water Quality491 <img src="contentfile/image/topic/wWater.png" alt="Water icon" title="Go to Water Quality Topic Page"/><br/><br/>Water Quality 492 492 </div> 493 493 </a> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/CatBRFS.xml
r23267 r25268 27 27 <CONTENT> 28 28 <a href="http://nj.gov/health/chs/njbrfs/" target="_blank" title="Go to CHS NJBRFS page"> 29 <img src=" view/image/home/brfss.gif" style="float:right; vertical-align:text-top; margin:0;margin-left:8px;margin-right:15px; height:75px;" title="BRFSS logo" alt="BRFSS"/></a>29 <img src="contentfile/image/home/brfss.gif" style="float:right; vertical-align:text-top; margin:0;margin-left:8px;margin-right:15px; height:75px;" title="BRFSS logo" alt="BRFSS"/></a> 30 30 <!--h2>Category Overview</h2--> 31 31 <br/> … … 48 48 <td style="width:35%"> 49 49 <a href="indicator/view/Obese.NewTrend.html" target="_blank" title="Go to Adult Obesity report"> 50 <img src=" view/image/home/AdultObesity.png" style="height:80px;" title="Adult Obesity" alt="Adult Obesity report link"/></a>50 <img src="contentfile/image/home/AdultObesity.png" style="height:80px;" title="Adult Obesity" alt="Adult Obesity report link"/></a> 51 51 </td> 52 52 <td style="width:35%"> 53 53 <a href="indicator/view/CigSmokAdlt.Year2.html" target="_blank" title="Go to Smoking report"> 54 <img src=" view/image/home/smoking.png" style="height:80px;" title="Smoking" alt="Adult Smoking report link"/></a>54 <img src="contentfile/image/home/smoking.png" style="height:80px;" title="Smoking" alt="Adult Smoking report link"/></a> 55 55 </td> 56 56 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/CatCSTECDI.xml
r23267 r25268 26 26 <CONTENT> 27 27 <a href="https://www.cdc.gov/cdi/index.html" target="_blank" title="Go to CDC's CDI site"> 28 <img src=" view/image/home/chronic3.png" style="float:right; vertical-align:text-top; margin:0;height:100px;" title="chronic disease body" alt="Chronic pic"/></a>28 <img src="contentfile/image/home/chronic3.png" style="float:right; vertical-align:text-top; margin:0;height:100px;" title="chronic disease body" alt="Chronic pic"/></a> 29 29 <!--h2>Category Overview</h2--> 30 30 <ul> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/CatDisparity.xml
r23267 r25268 57 57 <CONTENT> 58 58 <a href="resources/HealthDisparities.html" target="_blank" title="Go to Health Disparities page"> 59 <img src=" view/image/home/inequality.png" style="float:right; vertical-align:text-top; margin:0;margin-left:15px;margin-right:15px; height:100px;" title="Health Inequity symbol" alt="HealthInequity"/></a>59 <img src="contentfile/image/home/inequality.png" style="float:right; vertical-align:text-top; margin:0;margin-left:15px;margin-right:15px; height:100px;" title="Health Inequity symbol" alt="HealthInequity"/></a> 60 60 <ul> 61 61 <!--li> … … 86 86 <td style="width:15%"> 87 87 <a href="indicator/view/NJEPHTAsthmaHosp.EDu5.html" target="_blank" title="Go to Asthma Hospitalization report"> 88 <img src=" view/image/home/Asthma.png" style="height:80px;" title="Asthma" alt="Asthma Hospitalization report link"/></a>88 <img src="contentfile/image/home/Asthma.png" style="height:80px;" title="Asthma" alt="Asthma Hospitalization report link"/></a> 89 89 </td> 90 90 <td style="width:15%"> 91 91 <a href="indicator/view/HIVDeath.RE.html" target="_blank" title="Go to HIV Deaths report"> 92 <img src=" view/image/home/HIV.png" style="height:80px;" title="HIV" alt="HIV Deaths report link"/></a>92 <img src="contentfile/image/home/HIV.png" style="height:80px;" title="HIV" alt="HIV Deaths report link"/></a> 93 93 </td> 94 94 <td style="width:15%"> 95 95 <a href="indicator/view/Homicide.REtrend.html" target="_blank" title="Go to Homicide report"> 96 <img src=" view/image/home/Homicide.png" style="height:80px;" title="Homicide" alt="Homicide report link"/></a>96 <img src="contentfile/image/home/Homicide.png" style="height:80px;" title="Homicide" alt="Homicide report link"/></a> 97 97 </td> 98 98 <td style="width:15%"> 99 99 <a href="indicator/view/EPHTInfMort.RETrend.html" target="_blank" title="Go to Infant Mortality report"> 100 <img src=" view/image/home/InfantMortality.png" style="height:80px;" title="Infant Mortality" alt="Infant Mortality report link"/></a>100 <img src="contentfile/image/home/InfantMortality.png" style="height:80px;" title="Infant Mortality" alt="Infant Mortality report link"/></a> 101 101 </td> 102 102 <td style="width:15%"> 103 103 <a href="indicator/view/Obese.race.html" target="_blank" title="Go to Obesity report"> 104 <img src=" view/image/home/Obesity2.png" style="height:80px;" title="Obesity" alt="Obesity report link"/></a>104 <img src="contentfile/image/home/Obesity2.png" style="height:80px;" title="Obesity" alt="Obesity report link"/></a> 105 105 </td> 106 106 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/CatEPHT.xml
r23267 r25268 29 29 <CONTENT> 30 30 <a href="http://nj.gov/health/epht/" target="_blank" title="Go to NJEPHT site"> 31 <img src=" view/image/home/NewJersey_Tracking.png" style="float:right; vertical-align:text-top; margin:0; margin-left:8px;margin-right:15px; height:100px;" title="EPHT logo" alt="EPHT"/></a>31 <img src="contentfile/image/home/NewJersey_Tracking.png" style="float:right; vertical-align:text-top; margin:0; margin-left:8px;margin-right:15px; height:100px;" title="EPHT logo" alt="EPHT"/></a> 32 32 <!--h2>Category Overview</h2--> 33 33 <br/> … … 54 54 <td style="width:20%"> 55 55 <a href="indicator/view/EPHTInfMort.County.html" target="_blank" title="Go to Infant Mortality report"> 56 <img src=" view/image/home/InfantMort.png" style="height:80px;" title="Infant Mortality" alt="Infant Mortality report link"/></a>56 <img src="contentfile/image/home/InfantMort.png" style="height:80px;" title="Infant Mortality" alt="Infant Mortality report link"/></a> 57 57 </td> 58 58 <td style="width:20%"> 59 59 <a href="indicator/view/EPHTPreTermB.Cnty.html" target="_blank" title="Go to Preterm Birth report"> 60 <img src=" view/image/home/Preterm.png" style="height:80px;" title="Preterm Birth" alt="Preterm Birth report link"/></a>60 <img src="contentfile/image/home/Preterm.png" style="height:80px;" title="Preterm Birth" alt="Preterm Birth report link"/></a> 61 61 </td> 62 62 <td style="width:20%"> 63 63 <a href="indicator/view/Pb_blood_lev.Pb_GE10.html" target="_blank" title="Go to Elevated Child Blood Lead Level report"> 64 <img src=" view/image/home/BloodLead.png" style="height:80px;" title="Elevated Child Blood Lead Level" alt="Elevated Child Blood Lead Level report link"/></a>64 <img src="contentfile/image/home/BloodLead.png" style="height:80px;" title="Elevated Child Blood Lead Level" alt="Elevated Child Blood Lead Level report link"/></a> 65 65 </td> 66 66 <td style="width:20%"> 67 67 <a href="indicator/view/NJEPHTAIR.PM25viol.html" target="_blank" title="Go to Fine Particulate Matter"> 68 <img src=" view/image/home/PM25.png" style="height:80px;" title="Fine Particulate Matter" alt="Fine Particulate Matter report link"/></a>68 <img src="contentfile/image/home/PM25.png" style="height:80px;" title="Fine Particulate Matter" alt="Fine Particulate Matter report link"/></a> 69 69 </td> 70 70 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/CatHNJ2020.xml
r23267 r25268 29 29 <CONTENT> 30 30 <a href="http://nj.gov/health/chs/hnj2020/about/intro/" target="_blank" title="Go to HNJ2020 site"> 31 <img src=" view/image/home/HNJ2020.png" style="float:right; vertical-align:text-top; margin:0;height:100px;" title="HNJ2020 logo" alt="HNJ2020"/></a>31 <img src="contentfile/image/home/HNJ2020.png" style="float:right; vertical-align:text-top; margin:0;height:100px;" title="HNJ2020 logo" alt="HNJ2020"/></a> 32 32 <!--h2>Category Overview</h2--> 33 33 <br/> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/CatLHI.xml
r23267 r25268 28 28 <CONTENT> 29 29 <a href="http://nj.gov/health/chs/hnj2020/about/leading_health_indicators/" target="_blank" title="Go to HNJ2020 LHI page"> 30 <img src=" view/image/home/LHI.png" style="float:right; vertical-align:text-top; margin:0;margin-left:8px;margin-right:10px; width:100px;height:100px;" title="LHI logo" alt="LHI"/></a>30 <img src="contentfile/image/home/LHI.png" style="float:right; vertical-align:text-top; margin:0;margin-left:8px;margin-right:10px; width:100px;height:100px;" title="LHI logo" alt="LHI"/></a> 31 31 <!--h2>Category Overview</h2--> 32 32 <br/> … … 57 57 <td> 58 58 <a href="indicator/view/PersonalDoctor.Year.html" target="_blank" title="Go to Personal Doctor report"> 59 <img src=" view/image/home/LHI access.png" style="height:100px;" title="Access to Health Care: Primary care access" alt="Access to Health Care: Primary care access report link"/></a>59 <img src="contentfile/image/home/LHI access.png" style="height:100px;" title="Access to Health Care: Primary care access" alt="Access to Health Care: Primary care access report link"/></a> 60 60 </td> 61 61 <td></td><td></td><td></td> 62 62 <td> 63 63 <a href="indicator/view/EPHTInfMort.NJ.html" target="_blank" title="Go to Infant Death report"> 64 <img src=" view/image/home/LHI infants.png" style="height:100px;" title="Birth Outcomes: Infant death" alt="Birth Outcomes: Infant death report link"/></a>64 <img src="contentfile/image/home/LHI infants.png" style="height:100px;" title="Birth Outcomes: Infant death" alt="Birth Outcomes: Infant death report link"/></a> 65 65 </td><td></td><td></td> 66 66 <td></td> 67 67 <td> 68 68 <a href="indicator/view/ImmChild2.Trend.html" target="_blank" title="Go to Childhood Immunizations report"> 69 <img src=" view/image/home/LHI immun.png" style="height:100px;" title="Childhood Immunization: DTaP, polio, MMR, Hib, hepatitis B, varicella, and pneumococcal conjugate vaccine" alt="Childhood Immunizations report link"/></a>69 <img src="contentfile/image/home/LHI immun.png" style="height:100px;" title="Childhood Immunization: DTaP, polio, MMR, Hib, hepatitis B, varicella, and pneumococcal conjugate vaccine" alt="Childhood Immunizations report link"/></a> 70 70 </td> 71 71 </tr> … … 74 74 <td> 75 75 <a href="indicator/view/CHDDeath.Trend.html" target="_blank" title="Go to Coronary Heart Disease Deaths report"> 76 <img src=" view/image/home/LHI heart.png" style="height:100px;" title="Heart Disease: Coronary heart disease deaths" alt="Coronary heart disease deaths report link"/></a>76 <img src="contentfile/image/home/LHI heart.png" style="height:100px;" title="Heart Disease: Coronary heart disease deaths" alt="Coronary heart disease deaths report link"/></a> 77 77 </td> 78 78 <td></td><td></td><td></td> 79 79 <td> 80 80 <a href="indicator/view/Obese.NewTrend.html" target="_blank" title="Go to Adult Obesity report"> 81 <img src=" view/image/home/LHI obesity adult.png" style="height:100px;" title="Obesity among adults" alt="Adult Obesity report link"/></a>81 <img src="contentfile/image/home/LHI obesity adult.png" style="height:100px;" title="Obesity among adults" alt="Adult Obesity report link"/></a> 82 82 </td> 83 83 <td></td><td></td><td></td> 84 84 <td> 85 85 <a href="indicator/view/ObeseAdol.NJ_US.html" target="_blank" title="Go to Teen Obesity report"> 86 <img src=" view/image/home/LHI obesity teen.png" style="height:100px;" title="Obesity among high school students" alt="Teen Obesity report link"/></a>86 <img src="contentfile/image/home/LHI obesity teen.png" style="height:100px;" title="Obesity among high school students" alt="Teen Obesity report link"/></a> 87 87 </td> 88 88 </tr> … … 92 92 <table> 93 93 <tr> 94 <img src=" view/image/home/LHIstatus.png" style="height:210px;" title="LHI status"/>94 <img src="contentfile/image/home/LHIstatus.png" style="height:210px;" title="LHI status"/> 95 95 </tr> 96 96 </table> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/CatMCH.xml
r23267 r25268 59 59 <CONTENT> 60 60 <a href="topic/Births.html" target="_blank" title="Go to Birth Topic page"> 61 <img src=" view/image/home/BirthAndInfantHealth.png" style="float:right; vertical-align:text-top; margin:0;margin-left:8px;margin-right:15px; height:100px;" title="Mother and Infant logo" alt="Mother and Infant"/></a>61 <img src="contentfile/image/home/BirthAndInfantHealth.png" style="float:right; vertical-align:text-top; margin:0;margin-left:8px;margin-right:15px; height:100px;" title="Mother and Infant logo" alt="Mother and Infant"/></a> 62 62 <!--h2>Category Overview</h2--> 63 63 <ul> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/Categorized.xml
r23267 r25268 37 37 <td id="home"> 38 38 <div class="Index Wide"> 39 <a href="indicator/CatBRFS.html"><img src=" view/image/home/wBRFSS200.png" style="width: 293px;" title="NJBRFS" alt="NJBRFS category link"/></a><br/><br/>39 <a href="indicator/CatBRFS.html"><img src="contentfile/image/home/wBRFSS200.png" style="width: 293px;" title="NJBRFS" alt="NJBRFS category link"/></a><br/><br/> 40 40 <a href="indicator/CatBRFS.html">Behavioral Risk Factor Survey (BRFS)</a> 41 41 </div> … … 48 48 <td id="home"> 49 49 <div class="Index Wide"> 50 <a href="indicator/CatCSTECDI.html"><img src=" view/image/home/wInnerNACDD.png" style="width: 80px;" title="NEW" alt="NEW icon"/></a><br/>50 <a href="indicator/CatCSTECDI.html"><img src="contentfile/image/home/wInnerNACDD.png" style="width: 80px;" title="NEW" alt="NEW icon"/></a><br/> 51 51 <a href="indicator/CatCSTECDI.html">CDC/CSTE/NACDD Chronic Disease Indicators </a> 52 52 </div> … … 59 59 <td id="home"> 60 60 <div class="Index Wide"> 61 <a href="indicator/CatEPHT.html"><img src=" view/image/home/wEPHT.png" style="width: 153px;" title="EPHT" alt="EPHT category link"/></a>61 <a href="indicator/CatEPHT.html"><img src="contentfile/image/home/wEPHT.png" style="width: 153px;" title="EPHT" alt="EPHT category link"/></a> 62 62 <a href="indicator/CatEPHT.html">Environmental Public Health Tracking (EPHT) Network</a> 63 63 </div> … … 70 70 <td id="home"> 71 71 <div class="Index Wide"> 72 <a href="indicator/CatDisparity.html"><img src=" view/image/home/wScale.png" style="width: 100px;" title="Disparities" alt="Health Disparities category link"/></a><br/><br/>72 <a href="indicator/CatDisparity.html"><img src="contentfile/image/home/wScale.png" style="width: 100px;" title="Disparities" alt="Health Disparities category link"/></a><br/><br/> 73 73 <a href="indicator/CatDisparity.html">Health Disparity Priority Areas</a> 74 74 </div> … … 81 81 <td id="home"> 82 82 <div class="Index Wide"> 83 <a href="indicator/CatHNJ2020.html"><img src=" view/image/home/wHNJ2020.png" style="width: 159px;" title="Healthy NJ" alt="Healthy NJ category link"/></a><br/><br/>83 <a href="indicator/CatHNJ2020.html"><img src="contentfile/image/home/wHNJ2020.png" style="width: 159px;" title="Healthy NJ" alt="Healthy NJ category link"/></a><br/><br/> 84 84 <a href="indicator/CatHNJ2020.html">Healthy New Jersey (HNJ) </a> 85 85 </div> … … 92 92 <td id="home"> 93 93 <div class="Index Wide"> 94 <a href="indicator/CatLHI.html"><img src=" view/image/home/wGauge.png" style="width: 80px;" title="Leading Health Indicators" alt="LHI category link"/></a><br/><br/>94 <a href="indicator/CatLHI.html"><img src="contentfile/image/home/wGauge.png" style="width: 80px;" title="Leading Health Indicators" alt="LHI category link"/></a><br/><br/> 95 95 <a href="indicator/CatLHI.html">Leading Health Indicators</a> 96 96 </div> … … 103 103 <td id="home"> 104 104 <div class="Index Wide"> 105 <a href="indicator/CatMCH.html"><img src=" view/image/home/qwBirthImage.png" style="width: 80px;" title="MCH Epi" alt="MCH Epi category link"/></a>105 <a href="indicator/CatMCH.html"><img src="contentfile/image/home/qwBirthImage.png" style="width: 80px;" title="MCH Epi" alt="MCH Epi category link"/></a> 106 106 <a href="indicator/CatMCH.html">Maternal and Child Health Epidemiology (MCH Epi)</a> 107 107 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/ContentUsage.xml
r23267 r25268 121 121 <table> 122 122 <tr> 123 <td style="width:20%"><a href="indicator/index/Alphabetical.html"> <img src="../ view/image/home/AtoZ.png" alt="A-Z icon" title="Go to alphabetical index"/></a> </td>123 <td style="width:20%"><a href="indicator/index/Alphabetical.html"> <img src="../contentfile/image/home/AtoZ.png" alt="A-Z icon" title="Go to alphabetical index"/></a> </td> 124 124 <!--td style="width:10px"></td--> 125 125 <td style="vertical-align:middle"><a href="indicator/index/Alphabetical.html" class="Bold">Alphabetical/Chronological Index</a> - All indicator reports listed in alphabetical order with the ability to sort by publication date</td> … … 127 127 <tr style="height:15px"></tr> 128 128 <tr> 129 <td style="width:20%"><a href="indicator/Categorized.html"> <img src="../ view/image/home/hierarchy.png" alt="Category icon" title="Go to categorized index"/></a> </td>129 <td style="width:20%"><a href="indicator/Categorized.html"> <img src="../contentfile/image/home/hierarchy.png" alt="Category icon" title="Go to categorized index"/></a> </td> 130 130 <!--td style="width:10px"></td--> 131 131 <td style="vertical-align:middle"><a href="indicator/Categorized.html" class="Bold">Cross-Cutting Index</a> - Indicators categorized by health initiative, data source, or DOH program. </td> … … 133 133 <tr style="height:15px"></tr> 134 134 <tr> 135 <td style="width:20%"><a href="topic/Index.html"> <img src="../ view/image/indicatortopics.png" alt="topic icon" title="Go to Health Topics"/></a> </td>135 <td style="width:20%"><a href="topic/Index.html"> <img src="../contentfile/image/indicatortopics.png" alt="topic icon" title="Go to Health Topics"/></a> </td> 136 136 <!--td style="width:10px"></td--> 137 137 <td style="vertical-align:middle"><a href="topic/Index.html" class="Bold">Health Topics</a> - Indicator reports are listed in corresponding Health Topic pages</td> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/indicator/Introduction.xml
r23267 r25268 26 26 <td width="25%"> 27 27 <a href="indicator/index/Alphabetical.html"> 28 <img src=" view/image/home/AtoZ.png" alt="Alphabetical Index link" title="Go to Alphabetical/Publication Date Index" style="width:100%" vertical-align="middle"/></a>28 <img src="contentfile/image/home/AtoZ.png" alt="Alphabetical Index link" title="Go to Alphabetical/Publication Date Index" style="width:100%" vertical-align="middle"/></a> 29 29 </td> 30 30 <td width="75%" valign="top"> … … 36 36 <tr> 37 37 <td width="25%"> 38 <a href="indicator/Categorized.html"><img src=" view/image/home/hierarchy.png" alt="Category Index link" title="Go to Categorized Index" style="width:100%" vertical-align="middle"/></a>38 <a href="indicator/Categorized.html"><img src="contentfile/image/home/hierarchy.png" alt="Category Index link" title="Go to Categorized Index" style="width:100%" vertical-align="middle"/></a> 39 39 </td> 40 40 <td width="75%" valign="top"> … … 47 47 <td width="25%"> 48 48 <a href="topic/Index.html"> 49 <img src=" view/image/indicatortopics2.png" alt="Health Topics Index link" title="Go to Health Topics index" style="width:100%" vertical-align="middle"/></a>49 <img src="contentfile/image/indicatortopics2.png" alt="Health Topics Index link" title="Go to Health Topics index" style="width:100%" vertical-align="middle"/></a> 50 50 </td> 51 51 <td width="75%" valign="top"> … … 58 58 <td width="25%"> 59 59 <a href="indicator/index/Alphabetical.html"> 60 <img src=" view/image/home/datesort.png" alt="Publication Date Index link" title="Go to Alphabetical/Publication Date Index" style="width:100%" vertical-align="middle"/></a>60 <img src="contentfile/image/home/datesort.png" alt="Publication Date Index link" title="Go to Alphabetical/Publication Date Index" style="width:100%" vertical-align="middle"/></a> 61 61 </td> 62 62 <td width="75%" valign="top"> … … 68 68 <td style="width:40%"> 69 69 <a href="indicator/Categorized.html" title="Go to Categorized Index"> 70 <img src=" view/image/home/Category2.png" style="width:185px;" title="Categorized Index" alt="Category Index link"/></a>70 <img src="contentfile/image/home/Category2.png" style="width:185px;" title="Categorized Index" alt="Category Index link"/></a> 71 71 </td> 72 72 </tr><tr> 73 73 <td style="width:40%"> 74 74 <a href="indicator/index/Alphabetical.html" title="Go to Alphabetical/Publication Date Index"> 75 <img src=" view/image/home/AlphaChrono.png" style="width:185px;" title="Alpha/Chrono Index" alt="Alphabetical/Publication Date Index link"/></a>75 <img src="contentfile/image/home/AlphaChrono.png" style="width:185px;" title="Alpha/Chrono Index" alt="Alphabetical/Publication Date Index link"/></a> 76 76 </td> 77 77 </tr--> … … 89 89 <td width="25%"> 90 90 <a href="topic/Index.html"> 91 <img src=" view/image/indicatortopics2.png" alt="Health Topics Index link" title="Go to Health Topics index" style="width:100%" vertical-align="middle"/></a>91 <img src="contentfile/image/indicatortopics2.png" alt="Health Topics Index link" title="Go to Health Topics index" style="width:100%" vertical-align="middle"/></a> 92 92 </td> 93 93 <td width="75%" valign="top"> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/ContentUsage.xml
r23267 r25268 179 179 Use the <a href="query/Help.html" class="Bold">Query Help</a> button in the left navigation menu 180 180 for definitions, information, instructions, and examples. 181 Help icons like these <img src="../ view/image/info_popup.gif" alt="question bubble icon"/> <img src="../view/image/info_link.gif" alt="question link icon"/>181 Help icons like these <img src="../contentfile/image/info_popup.gif" alt="question bubble icon"/> <img src="../contentfile/image/info_link.gif" alt="question link icon"/> 182 182 throughout the query modules also provide information necessary to make specific query-related selections.<br/><br/> 183 183 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/Help.xml
r23267 r25268 45 45 <li><a href="query/Tips.html">NJSHAD Query System Tips and Tutorial</a></li> 46 46 <!--li><a href="query/Tutorials.html">NJSHAD Query System Tutorial and Workbook</a></li--> 47 <li><!--a href="http://ophponline.umdnj.edu/mediasite/Viewer/?peid=dfef0ffdb4384e40a922afce6159c2ea1d" target="_blank"--><a href="view/sharedstatic/DemoWebinar.mp4" download="NJSHAD_demo_webinar_Sep2017.mp4">NJSHAD Step-by-Step Demonstration - Webinar/Video</a> (Sept 2017) <img src="../ view/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/> <span class="SmallerFont">You must download the MP4 file. Webinar will not play in browser. Video has been edited down to 53 minutes, so it starts and ends abruptly.</span><!--a href="http://ophponline.umdnj.edu/mediasite/Viewer/?peid=dfef0ffdb4384e40a922afce6159c2ea1d" target="_blank"><img src="../view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a--></li>47 <li><!--a href="http://ophponline.umdnj.edu/mediasite/Viewer/?peid=dfef0ffdb4384e40a922afce6159c2ea1d" target="_blank"--><a href="view/sharedstatic/DemoWebinar.mp4" download="NJSHAD_demo_webinar_Sep2017.mp4">NJSHAD Step-by-Step Demonstration - Webinar/Video</a> (Sept 2017) <img src="../contentfile/image/home/reel.png" alt="MP4 icon" width="16" height="16" title="MP4 logo"/> <span class="SmallerFont">You must download the MP4 file. Webinar will not play in browser. Video has been edited down to 53 minutes, so it starts and ends abruptly.</span><!--a href="http://ophponline.umdnj.edu/mediasite/Viewer/?peid=dfef0ffdb4384e40a922afce6159c2ea1d" target="_blank"><img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a--></li> 48 48 <li><a href="home/MapChoroClasses.html">Maps and Data Grouping Methods</a></li> 49 49 </ul><br/> … … 67 67 <li><a href="home/ResidOccur.html">Allocation of Data by Residence or Occurrence</a></li> 68 68 <li><a href="home/ConfidenceInterval.html">Confidence Intervals</a></li> 69 <li><a href="http://www.metric-conversions.org/weight/grams-to-pounds.htm" target="_blank">Convert Grams to Pounds</a> <a href="http://www.metric-conversions.org/weight/grams-to-pounds.htm" target="_blank"><img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li>69 <li><a href="http://www.metric-conversions.org/weight/grams-to-pounds.htm" target="_blank">Convert Grams to Pounds</a> <a href="http://www.metric-conversions.org/weight/grams-to-pounds.htm" target="_blank"><img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li> 70 70 <li><a href="home/ReliabilityValidity.html">Reliability and Validity</a></li> 71 71 <br/> 72 <li><a href="http://www.animatedsoftware.com/statglos/statglos.htm#index" target="_blank">Statistical Glossary</a> <a href="http://www.animatedsoftware.com/statglos/statglos.htm#index" target="_blank"><img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li>72 <li><a href="http://www.animatedsoftware.com/statglos/statglos.htm#index" target="_blank">Statistical Glossary</a> <a href="http://www.animatedsoftware.com/statglos/statglos.htm#index" target="_blank"><img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li> 73 73 <li><a href="home/StatDefs.html">Statistical Measures and Definitions Summary</a></li> 74 74 <li><a href="home/Timeliness.html">Timeliness and Accuracy of Public Health Data</a></li> … … 78 78 <br/> 79 79 <div class="Note"> 80 <img src="../ view/image/external_link.png" alt="external link icon" width="15" height="15" title="Additional Information"/>80 <img src="../contentfile/image/external_link.png" alt="external link icon" width="15" height="15" title="Additional Information"/> 81 81 Clicking this link will take you off the NJSHAD website. 82 82 </div><br/> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/ICDFet45Rankable.xml
r23267 r25268 327 327 <table cellpadding="0" cellspacing="0" width="100%"> 328 328 <tr> 329 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src=" view/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td>329 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src="contentfile/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td> 330 330 <td><a href="query/selection/infantfetal/InfFetSelection.html">Fetal Death Query</a></td> 331 331 </tr> … … 335 335 <table cellpadding="0" cellspacing="0" width="100%"> 336 336 <tr> 337 <td><a href="query/ICDFet7Major.html"><img src=" view/image/home/7.jpg" alt="7 Major Causes of Fetal Death"></img></a></td>337 <td><a href="query/ICDFet7Major.html"><img src="contentfile/image/home/7.jpg" alt="7 Major Causes of Fetal Death"></img></a></td> 338 338 <td><a href="query/ICDFet7Major.html">Leading Causes of Fetal Death</a></td> 339 339 </tr> … … 345 345 <table cellpadding="0" cellspacing="0" width="100%"> 346 346 <tr> 347 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>347 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 348 348 <td><a href="query/Help.html">Query Help Page</a></td> 349 349 </tr> … … 353 353 <table cellpadding="0" cellspacing="0" width="100%"> 354 354 <tr> 355 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>355 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 356 356 <td><a href="home/Help.html">Main Help Page</a></td> 357 357 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/ICDFet7Major.xml
r23267 r25268 83 83 <table cellpadding="0" cellspacing="0" width="100%"> 84 84 <tr> 85 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src=" view/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td>85 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src="contentfile/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td> 86 86 <td><a href="query/selection/infantfetal/InfFetSelection.html">Fetal Death Query</a></td> 87 87 </tr> … … 91 91 <table cellpadding="0" cellspacing="0" width="100%"> 92 92 <tr> 93 <td><a href="query/ICDFet45Rankable.html"><img src=" view/image/home/45.jpg" alt="45 Rankable Causes of Fetal Death"></img></a></td>93 <td><a href="query/ICDFet45Rankable.html"><img src="contentfile/image/home/45.jpg" alt="45 Rankable Causes of Fetal Death"></img></a></td> 94 94 <td><a href="query/ICDFet45Rankable.html">List of 45 Rankable Causes of Fetal Death</a></td> 95 95 </tr> … … 101 101 <table cellpadding="0" cellspacing="0" width="100%"> 102 102 <tr> 103 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>103 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 104 104 <td><a href="query/Help.html">Query Help Page</a></td> 105 105 </tr> … … 109 109 <table cellpadding="0" cellspacing="0" width="100%"> 110 110 <tr> 111 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>111 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 112 112 <td><a href="home/Help.html">Main Help Page</a></td> 113 113 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/ICDInf10Major.xml
r23267 r25268 167 167 <table cellpadding="0" cellspacing="0" width="100%"> 168 168 <tr> 169 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src=" view/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td>169 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src="contentfile/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td> 170 170 <td><a href="query/selection/infantfetal/InfFetSelection.html">Infant Death Query</a></td> 171 171 </tr> … … 175 175 <table cellpadding="0" cellspacing="0" width="100%"> 176 176 <tr> 177 <td><a href="query/ICDInf71Rankable.html"><img src=" view/image/home/71.jpg" alt="71 Rankable Causes of Infant Death"></img></a></td>177 <td><a href="query/ICDInf71Rankable.html"><img src="contentfile/image/home/71.jpg" alt="71 Rankable Causes of Infant Death"></img></a></td> 178 178 <td><a href="query/ICDInf71Rankable.html">List of 71 Rankable Causes of Infant Death</a></td> 179 179 </tr> … … 185 185 <table cellpadding="0" cellspacing="0" width="100%"> 186 186 <tr> 187 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>187 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 188 188 <td><a href="query/Help.html">Query Help Page</a></td> 189 189 </tr> … … 193 193 <table cellpadding="0" cellspacing="0" width="100%"> 194 194 <tr> 195 <td><a href="query/ICDInf130.html"><img src=" view/image/home/130.jpg" alt="130 Causes of Infant Death"></img></a></td>195 <td><a href="query/ICDInf130.html"><img src="contentfile/image/home/130.jpg" alt="130 Causes of Infant Death"></img></a></td> 196 196 <td><a href="query/ICDInf130.html">List of 130 Selected Causes of Infant Death</a></td> 197 197 </tr> … … 203 203 <table cellpadding="0" cellspacing="0" width="100%"> 204 204 <tr> 205 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>205 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 206 206 <td><a href="home/Help.html">Main Help Page</a></td> 207 207 </tr> … … 211 211 <table cellpadding="0" cellspacing="0" width="100%"> 212 212 <tr> 213 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>213 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 214 214 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 215 215 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/ICDInf130.xml
r23267 r25268 1248 1248 <table cellpadding="0" cellspacing="0" width="100%"> 1249 1249 <tr> 1250 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src=" view/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td>1250 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src="contentfile/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td> 1251 1251 <td><a href="query/selection/infantfetal/InfFetSelection.html">Infant Death Query</a></td> 1252 1252 </tr> … … 1256 1256 <table cellpadding="0" cellspacing="0" width="100%"> 1257 1257 <tr> 1258 <td><a href="query/ICDInf10Major.html"><img src=" view/image/home/10.jpg" alt="10 Major Causes of Infant Death"></img></a></td>1258 <td><a href="query/ICDInf10Major.html"><img src="contentfile/image/home/10.jpg" alt="10 Major Causes of Infant Death"></img></a></td> 1259 1259 <td><a href="query/ICDInf10Major.html">List of 7 Major Causes of Infant Death</a></td> 1260 1260 </tr> … … 1266 1266 <table cellpadding="0" cellspacing="0" width="100%"> 1267 1267 <tr> 1268 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>1268 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 1269 1269 <td><a href="query/Help.html">Query Help Page</a></td> 1270 1270 </tr> … … 1274 1274 <table cellpadding="0" cellspacing="0" width="100%"> 1275 1275 <tr> 1276 <td><a href="query/ICDInf71Rankable.html"><img src=" view/image/home/71.jpg" alt="71 Rankable Causes of Infant Death"></img></a></td>1276 <td><a href="query/ICDInf71Rankable.html"><img src="contentfile/image/home/71.jpg" alt="71 Rankable Causes of Infant Death"></img></a></td> 1277 1277 <td><a href="query/ICDInf71Rankable.html">List of 71 Rankable Causes of Infant Death</a></td> 1278 1278 </tr> … … 1284 1284 <table cellpadding="0" cellspacing="0" width="100%"> 1285 1285 <tr> 1286 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>1286 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 1287 1287 <td><a href="home/Help.html">Main Help Page</a></td> 1288 1288 </tr> … … 1292 1292 <table cellpadding="0" cellspacing="0" width="100%"> 1293 1293 <tr> 1294 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>1294 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 1295 1295 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 1296 1296 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/ICDInf71Rankable.xml
r23267 r25268 716 716 <table cellpadding="0" cellspacing="0" width="100%"> 717 717 <tr> 718 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src=" view/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td>718 <td><a href="query/selection/infantfetal/InfFetSelection.html"><img src="contentfile/image/home/teddyoutline2.jpg" alt="Infant Death Query"></img></a></td> 719 719 <td><a href="query/selection/infantfetal/InfFetSelection.html">Infant Death Query</a></td> 720 720 </tr> … … 724 724 <table cellpadding="0" cellspacing="0" width="100%"> 725 725 <tr> 726 <td><a href="query/ICDInf10Major.html"><img src=" view/image/home/10.jpg" alt="10 Major Causes of Infant Death"></img></a></td>726 <td><a href="query/ICDInf10Major.html"><img src="contentfile/image/home/10.jpg" alt="10 Major Causes of Infant Death"></img></a></td> 727 727 <td><a href="query/ICDInf10Major.html">List of 7 Major Causes of Infant Death</a></td> 728 728 </tr> … … 734 734 <table cellpadding="0" cellspacing="0" width="100%"> 735 735 <tr> 736 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>736 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 737 737 <td><a href="query/Help.html">Query Help Page</a></td> 738 738 </tr> … … 742 742 <table cellpadding="0" cellspacing="0" width="100%"> 743 743 <tr> 744 <td><a href="query/ICDInf130.html"><img src=" view/image/home/130.jpg" alt="130 Causes of Infant Death"></img></a></td>744 <td><a href="query/ICDInf130.html"><img src="contentfile/image/home/130.jpg" alt="130 Causes of Infant Death"></img></a></td> 745 745 <td><a href="query/ICDInf130.html">List of 130 Selected Causes of Infant Death</a></td> 746 746 </tr> … … 752 752 <table cellpadding="0" cellspacing="0" width="100%"> 753 753 <tr> 754 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>754 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 755 755 <td><a href="home/Help.html">Main Help Page</a></td> 756 756 </tr> … … 760 760 <table cellpadding="0" cellspacing="0" width="100%"> 761 761 <tr> 762 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>762 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 763 763 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 764 764 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/ICDlists.xml
r23267 r25268 73 73 74 74 <div class="Note"> 75 <img src="../ view/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/>75 <img src="../contentfile/image/info_icon.gif" alt="info icon" width="15" height="15" title="Additional Information"/> 76 76 Clicking the links above will take you off the NJSHAD website. Use your browser's Back button to return 77 77 to NJSHAD. -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/InjuryMatrix.xml
r23267 r25268 538 538 <table cellpadding="0" cellspacing="0" width="100%"> 539 539 <tr> 540 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>540 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 541 541 <td><a href="query/Help.html">Query Help Page</a></td> 542 542 </tr> … … 546 546 <table cellpadding="0" cellspacing="0" width="100%"> 547 547 <tr> 548 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>548 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 549 549 <td><a href="home/Help.html">Main Help Page</a></td> 550 550 </tr> … … 554 554 <table cellpadding="0" cellspacing="0" width="100%"> 555 555 <tr> 556 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>556 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 557 557 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 558 558 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/InjuryMatrix9.xml
r23267 r25268 442 442 <table cellpadding="0" cellspacing="0" width="100%"> 443 443 <tr> 444 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>444 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 445 445 <td><a href="query/Help.html">Query Help Page</a></td> 446 446 </tr> … … 450 450 <table cellpadding="0" cellspacing="0" width="100%"> 451 451 <tr> 452 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>452 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 453 453 <td><a href="home/Help.html">Main Help Page</a></td> 454 454 </tr> … … 458 458 <table cellpadding="0" cellspacing="0" width="100%"> 459 459 <tr> 460 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>460 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 461 461 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 462 462 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/Introduction.xml
r23267 r25268 27 27 <td id="home"> 28 28 <div class="Index Wide"> 29 <a href="query/selection/birth/BirthSelection.html"> <img src="/doh-shad/ view/image/home/qwBirthImage.png" alt="NJSHAD birth query" title="Go to the birth query builder page"/></a><br/>29 <a href="query/selection/birth/BirthSelection.html"> <img src="/doh-shad/contentfile/image/home/qwBirthImage.png" alt="NJSHAD birth query" title="Go to the birth query builder page"/></a><br/> 30 30 <a href="query/selection/birth/BirthSelection.html">1990-2019 Births</a> 31 31 </div> … … 37 37 <td id="home"> 38 38 <div class="Index Wide"> 39 <a href="query/selection/mort/MortSelection.html"> <img src="/doh-shad/ view/image/home/qwDeathImage.png" alt="NJSHAD mortality query" title="Go to the death query builder page"/></a><br/>39 <a href="query/selection/mort/MortSelection.html"> <img src="/doh-shad/contentfile/image/home/qwDeathImage.png" alt="NJSHAD mortality query" title="Go to the death query builder page"/></a><br/> 40 40 <a href="query/selection/mort/MortSelection.html">2000-2019 Deaths/Mortality</a> 41 41 </div> … … 47 47 <td id="home"> 48 48 <div class="Index Wide"> 49 <a href="query/selection/provdth/MortSelection.html"> <img src="/doh-shad/ view/image/home/qwCovid.png" alt="NJSHAD mortality query" title="Go to the death query builder page"/></a><br/>49 <a href="query/selection/provdth/MortSelection.html"> <img src="/doh-shad/contentfile/image/home/qwCovid.png" alt="NJSHAD mortality query" title="Go to the death query builder page"/></a><br/> 50 50 <a href="query/selection/provdth/MortSelection.html">2020-2021 Year-To-Date Deaths</a> 51 51 </div> … … 57 57 <td id="home"> 58 58 <div class="Index Wide"> 59 <a href="query/selection/vdrs/VDRSSelection.html"> <img src="/doh-shad/ view/image/home/qwcrimescene.png" alt="NJSHAD VDRS query" title="Go to the violent death query builder page"/></a><br/>59 <a href="query/selection/vdrs/VDRSSelection.html"> <img src="/doh-shad/contentfile/image/home/qwcrimescene.png" alt="NJSHAD VDRS query" title="Go to the violent death query builder page"/></a><br/> 60 60 <a href="query/selection/vdrs/VDRSSelection.html">2012-2017 Violent Deaths</a> 61 61 </div> … … 67 67 <td id="home"> 68 68 <div class="Index Wide"> 69 <a href="query/selection/lifeexp/LifeExpSelection.html"> <img src="/doh-shad/ view/image/home/qwLEimage.png" alt="NJSHAD life expectancy query" title="Go to the life expectancy query builder page"/></a><br/>69 <a href="query/selection/lifeexp/LifeExpSelection.html"> <img src="/doh-shad/contentfile/image/home/qwLEimage.png" alt="NJSHAD life expectancy query" title="Go to the life expectancy query builder page"/></a><br/> 70 70 <a href="query/selection/lifeexp/LifeExpSelection.html">2000-2019 Life Expectancy</a> 71 71 </div> … … 77 77 <td id="home"> 78 78 <div class="Index Wide"> 79 <a href="query/selection/infantfetal/InfFetSelection.html"> <img src="/doh-shad/ view/image/home/qwInfImage.png" alt="NJSHAD infant and fetal death query" title="Go to the infant and fetal death query builder page"/></a><br/>79 <a href="query/selection/infantfetal/InfFetSelection.html"> <img src="/doh-shad/contentfile/image/home/qwInfImage.png" alt="NJSHAD infant and fetal death query" title="Go to the infant and fetal death query builder page"/></a><br/> 80 80 <a href="query/selection/infantfetal/InfFetSelection.html">2000-2018 Infant and Fetal Deaths</a> 81 81 </div> … … 87 87 <td id="home"> 88 88 <div class="Index Wide"> 89 <a href="query/selection/prams/PRAMSSelection.html"> <img src="/doh-shad/ view/image/home/qwPRAMSimage.png" alt="NJSHAD PRAMS query" title="Go to the PRAMS query builder page"/></a><br/>89 <a href="query/selection/prams/PRAMSSelection.html"> <img src="/doh-shad/contentfile/image/home/qwPRAMSimage.png" alt="NJSHAD PRAMS query" title="Go to the PRAMS query builder page"/></a><br/> 90 90 <a href="query/selection/prams/PRAMSSelection.html">2004-2018 Pregnancy Risk Assessment</a> 91 91 </div> … … 97 97 <td id="home"> 98 98 <div class="Index Wide"> 99 <a href="query/selection/njbrfs/BRFSSSelection.html"> <img src="/doh-shad/ view/image/home/qwBRFSimage.png" alt="NJSHAD BRFSS query" title="Go to the NJBRFS query builder page"/></a><br/>99 <a href="query/selection/njbrfs/BRFSSSelection.html"> <img src="/doh-shad/contentfile/image/home/qwBRFSimage.png" alt="NJSHAD BRFSS query" title="Go to the NJBRFS query builder page"/></a><br/> 100 100 <a href="query/selection/njbrfs/BRFSSSelection.html">2011-2017 Behavioral Risk Factor Survey</a> 101 101 </div> … … 107 107 <td id="home"> 108 108 <div class="Index Wide"> 109 <a href="query/selection/ub/UBSelection.html"> <img src="/doh-shad/ view/image/home/qwHospImage.png" alt="NJSHAD hospitalization query" title="Go to the hospitalization query builder page"/></a><br/>109 <a href="query/selection/ub/UBSelection.html"> <img src="/doh-shad/contentfile/image/home/qwHospImage.png" alt="NJSHAD hospitalization query" title="Go to the hospitalization query builder page"/></a><br/> 110 110 <a href="query/selection/ub/UBSelection.html">2008-2018 Inpatient and ED Discharges</a> 111 111 </div> … … 117 117 <td id="home"> 118 118 <div class="Index Wide"> 119 <a href="query/selection/std/STDSelection.html"> <img src="/doh-shad/ view/image/home/qwSTDimage.png" alt="NJSHAD STD query" title="Go to the STD query builder page"/></a><br/>119 <a href="query/selection/std/STDSelection.html"> <img src="/doh-shad/contentfile/image/home/qwSTDimage.png" alt="NJSHAD STD query" title="Go to the STD query builder page"/></a><br/> 120 120 <a href="query/selection/std/STDSelection.html">2012-2020 Reported STD Cases</a> 121 121 </div> … … 127 127 <td id="home"> 128 128 <div class="Index Wide"> 129 <a href="query/selection/commdis/CommDisSelection.html"> <img src="/doh-shad/ view/image/home/qwCDimage.png" alt="NJSHAD CDS query" title="Go to the CDS query builder page"/></a><br/>129 <a href="query/selection/commdis/CommDisSelection.html"> <img src="/doh-shad/contentfile/image/home/qwCDimage.png" alt="NJSHAD CDS query" title="Go to the CDS query builder page"/></a><br/> 130 130 <a href="query/selection/commdis/CommDisSelection.html">2010-2019 Communicable Disease Cases</a> 131 131 </div> … … 137 137 <td id="home"> 138 138 <div class="Index Wide"> 139 <a href="query/selection/immun/ImmunSelection.html"> <img src="/doh-shad/ view/image/home/qwImmImage.png" alt="NJSHAD immunization query" title="Go to the immunization query builder page"/></a><br/>139 <a href="query/selection/immun/ImmunSelection.html"> <img src="/doh-shad/contentfile/image/home/qwImmImage.png" alt="NJSHAD immunization query" title="Go to the immunization query builder page"/></a><br/> 140 140 <a href="query/selection/immun/ImmunSelection.html">2016-2018 School Immunization Status</a> 141 141 </div> … … 170 170 <!--h2>Preliminary Birth and Death Statistics</h2--> 171 171 <ul> 172 <li><b>Added May 2021:</b> <a href="view/sharedstatic/Provisional2020Births.pdf">Births: Provisional Data for 2020</a> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/> (from CDC's "<a href="https://www.cdc.gov/nchs/data/vsrr/vsrr012-508.pdf">Rapid Release</a>" program which uses weighted estimates)</li>172 <li><b>Added May 2021:</b> <a href="view/sharedstatic/Provisional2020Births.pdf">Births: Provisional Data for 2020</a> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/> (from CDC's "<a href="https://www.cdc.gov/nchs/data/vsrr/vsrr012-508.pdf">Rapid Release</a>" program which uses weighted estimates)</li> 173 173 <li><b>Added Feb 2021:</b> <a href="query/selection/provdth/MortSelection.html">Provisional 2021 Death Data</a></li> 174 174 <li><b>Added Sept 2020:</b> <!--a href="query/selection/birth/BirthSelection.html">Preliminary 2019 Birth Data</a> and --><a href="query/selection/provdth/MortSelection.html">Provisional 2020 Death Data</a></li> 175 175 <!--li><b>Added July 2020:</b> <a href="query/selection/mort/MortSelection.html">Preliminary 2019 Death Data</a></li> 176 <li><b>Added May 2020:</b> <a href="view/sharedstatic/Provisional2019Births.pdf">Births: Provisional Data for 2019</a> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/> (from CDC's "<a href="https://www.cdc.gov/nchs/data/vsrr/vsrr-8-508.pdf">Rapid Release</a>" program which uses weighted estimates)</li-->177 <!--li><b>Updated 5/5/17:</b> <a href="view/sharedstatic/pvs.pdf">2015 Deaths</a> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li-->176 <li><b>Added May 2020:</b> <a href="view/sharedstatic/Provisional2019Births.pdf">Births: Provisional Data for 2019</a> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/> (from CDC's "<a href="https://www.cdc.gov/nchs/data/vsrr/vsrr-8-508.pdf">Rapid Release</a>" program which uses weighted estimates)</li--> 177 <!--li><b>Updated 5/5/17:</b> <a href="view/sharedstatic/pvs.pdf">2015 Deaths</a> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li--> 178 178 <!--li>If you need preliminary municipality-level birth data for <span class="Bold">school enrollment projections</span>, please email 179 179 <SCRIPT TYPE="text/javascript"> … … 185 185 </NOSCRIPT></li--> 186 186 <!--li><b>Added August 2019:</b> <a href="query/selection/birth/BirthSelection.html">Preliminary 2018 Birth Data</a></li> 187 <li><b>Added May 2019:</b> <a href="view/sharedstatic/Provisional2018Births.pdf">Births: Provisional Data for 2018</a> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/> (from CDC's "<a href="https://www.cdc.gov/nchs/data/vsrr/vsrr-007-508.pdf">Rapid Release</a>" program which uses weighted estimates)</li>188 <li><b>Added December 2018:</b> <a href="view/sharedstatic/Preliminary2017Deaths.pdf">Deaths in New Jersey, 2017: Preliminary Data from CDC WONDER</a> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li>189 <li><b>Added October 2018:</b> <a href="view/sharedstatic/Preliminary2017Births.pdf">Births in New Jersey, 2017: Preliminary Data from CDC WONDER</a> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li-->190 <!--li><b>Added Jan 2018:</b> <a href="view/sharedstatic/Provisional2016Deaths.pdf">Deaths: Provisional Data for 2016</a> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li>191 <li><b>Added May 2018:</b> <a href="view/sharedstatic/Provisional2017Births.pdf">Births: Provisional Data for 2017</a> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li-->187 <li><b>Added May 2019:</b> <a href="view/sharedstatic/Provisional2018Births.pdf">Births: Provisional Data for 2018</a> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/> (from CDC's "<a href="https://www.cdc.gov/nchs/data/vsrr/vsrr-007-508.pdf">Rapid Release</a>" program which uses weighted estimates)</li> 188 <li><b>Added December 2018:</b> <a href="view/sharedstatic/Preliminary2017Deaths.pdf">Deaths in New Jersey, 2017: Preliminary Data from CDC WONDER</a> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li> 189 <li><b>Added October 2018:</b> <a href="view/sharedstatic/Preliminary2017Births.pdf">Births in New Jersey, 2017: Preliminary Data from CDC WONDER</a> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li--> 190 <!--li><b>Added Jan 2018:</b> <a href="view/sharedstatic/Provisional2016Deaths.pdf">Deaths: Provisional Data for 2016</a> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li> 191 <li><b>Added May 2018:</b> <a href="view/sharedstatic/Provisional2017Births.pdf">Births: Provisional Data for 2017</a> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Clicking this link takes you to a PDF document"/></li--> 192 192 <li><a href="http://www.nj.gov/oag/njcares/" target="_blank">Weekly reports</a> of NJ <span class="Bold">overdose</span> deaths and <span class="Bold">Narcan</span> administrations are provided by the Office of the State Medical Examiner.</li> 193 193 <li>The National Center for Health Statistics provides monthly provisional counts of New Jersey <a href="https://www.cdc.gov/nchs/nvss/vsrr/provisional-tables.htm" target="_blank" class="Bold">births, deaths</a>, <a href="https://www.cdc.gov/nchs/nvss/vsrr/drug-overdose-data.htm" target="_blank">drug overdose</a> deaths, and weekly <a href="https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm" target="_blank">COVID-19</a> and <a href="https://gis.cdc.gov/grasp/fluview/mortality.html" target="_blank">pneumonia and flu</a> deaths.</li> … … 336 336 <td width="20%" valign="center"> 337 337 <a href="resources/OtherWDQSs.html" title="Go to Other Data Access and Analysis Tools"> 338 <img src=" view/image/home/datagovclear.png" alt="DataSearchIcon" align="left" style="width:150px"/></a>338 <img src="contentfile/image/home/datagovclear.png" alt="DataSearchIcon" align="left" style="width:150px"/></a> 339 339 </td> 340 340 <td width="80%" valign="top" align="left"> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/LifeExp.xml
r23267 r25268 90 90 The variance of life expectancy (e) may be estimated as:<br/><br/> 91 91 92 <img src=" view/image/home/StdErrLifeExp.png" alt="Standard error for life expectancy"92 <img src="contentfile/image/home/StdErrLifeExp.png" alt="Standard error for life expectancy" 93 93 title="Standard error for life expectancy"/><br/><br/> 94 94 95 95 Where the variance of quantity 'p' is:<br/><br/> 96 96 97 <img src=" view/image/home/Var_p.png" alt="Variance of quantity 'p'"97 <img src="contentfile/image/home/Var_p.png" alt="Variance of quantity 'p'" 98 98 title="Variance of quantity 'p'"/> 99 99 <br/><br/> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/NCHS113.xml
r23267 r25268 1093 1093 <table cellpadding="0" cellspacing="0" width="100%"> 1094 1094 <tr> 1095 <td><a href="query/selection/mort/MortSelection.html"><img src=" view/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td>1095 <td><a href="query/selection/mort/MortSelection.html"><img src="contentfile/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td> 1096 1096 <td><a href="query/selection/mort/MortSelection.html">Mortality Query</a></td> 1097 1097 </tr> … … 1101 1101 <table cellpadding="0" cellspacing="0" width="100%"> 1102 1102 <tr> 1103 <td><a href="query/NCHS33.html"><img src=" view/image/home/33.jpg" alt="33 Major Causes of Death"></img></a></td>1103 <td><a href="query/NCHS33.html"><img src="contentfile/image/home/33.jpg" alt="33 Major Causes of Death"></img></a></td> 1104 1104 <td><a href="query/NCHS33.html">List of 33 Major Causes of Death</a></td> 1105 1105 </tr> … … 1111 1111 <table cellpadding="0" cellspacing="0" width="100%"> 1112 1112 <tr> 1113 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>1113 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 1114 1114 <td><a href="query/Help.html">Query Help Page</a></td> 1115 1115 </tr> … … 1119 1119 <table cellpadding="0" cellspacing="0" width="100%"> 1120 1120 <tr> 1121 <td><a href="query/NCHS50.html"><img src=" view/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td>1121 <td><a href="query/NCHS50.html"><img src="contentfile/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td> 1122 1122 <td><a href="query/NCHS50.html">List of 50 Rankable Causes of Death</a></td> 1123 1123 </tr> … … 1129 1129 <table cellpadding="0" cellspacing="0" width="100%"> 1130 1130 <tr> 1131 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>1131 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 1132 1132 <td><a href="home/Help.html">Main Help Page</a></td> 1133 1133 </tr> … … 1137 1137 <table cellpadding="0" cellspacing="0" width="100%"> 1138 1138 <tr> 1139 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>1139 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 1140 1140 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 1141 1141 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/NCHS24.xml
r23267 r25268 583 583 <table cellpadding="0" cellspacing="0" width="100%"> 584 584 <tr> 585 <td><a href="query/selection/mort/MortSelection.html"><img src=" view/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td>585 <td><a href="query/selection/mort/MortSelection.html"><img src="contentfile/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td> 586 586 <td><a href="query/selection/mort/MortSelection.html">Mortality Query</a></td> 587 587 </tr> … … 591 591 <table cellpadding="0" cellspacing="0" width="100%"> 592 592 <tr> 593 <td><a href="query/NCHS50.html"><img src=" view/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td>593 <td><a href="query/NCHS50.html"><img src="contentfile/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td> 594 594 <td><a href="query/NCHS50.html">List of 50 Rankable Causes of Death</a></td> 595 595 </tr> … … 601 601 <table cellpadding="0" cellspacing="0" width="100%"> 602 602 <tr> 603 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>603 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 604 604 <td><a href="query/Help.html">Query Help Page</a></td> 605 605 </tr> … … 609 609 <table cellpadding="0" cellspacing="0" width="100%"> 610 610 <tr> 611 <td><a href="query/NCHS113.html"><img src=" view/image/home/113.jpg" alt="113 Causes of Death"></img></a></td>611 <td><a href="query/NCHS113.html"><img src="contentfile/image/home/113.jpg" alt="113 Causes of Death"></img></a></td> 612 612 <td><a href="query/NCHS113.html">List of 113 Selected Causes of Death</a></td> 613 613 </tr> … … 619 619 <table cellpadding="0" cellspacing="0" width="100%"> 620 620 <tr> 621 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>621 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 622 622 <td><a href="home/Help.html">Main Help Page</a></td> 623 623 </tr> … … 627 627 <table cellpadding="0" cellspacing="0" width="100%"> 628 628 <tr> 629 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>629 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 630 630 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 631 631 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/NCHS33.xml
r23267 r25268 584 584 <table cellpadding="0" cellspacing="0" width="100%"> 585 585 <tr> 586 <td><a href="query/selection/mort/MortSelection.html"><img src=" view/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td>586 <td><a href="query/selection/mort/MortSelection.html"><img src="contentfile/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td> 587 587 <td><a href="query/selection/mort/MortSelection.html">Mortality Query</a></td> 588 588 </tr> … … 592 592 <table cellpadding="0" cellspacing="0" width="100%"> 593 593 <tr> 594 <td><a href="query/NCHS50.html"><img src=" view/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td>594 <td><a href="query/NCHS50.html"><img src="contentfile/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td> 595 595 <td><a href="query/NCHS50.html">List of 50 Rankable Causes of Death</a></td> 596 596 </tr> … … 602 602 <table cellpadding="0" cellspacing="0" width="100%"> 603 603 <tr> 604 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>604 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 605 605 <td><a href="query/Help.html">Query Help Page</a></td> 606 606 </tr> … … 610 610 <table cellpadding="0" cellspacing="0" width="100%"> 611 611 <tr> 612 <td><a href="query/NCHS113.html"><img src=" view/image/home/113.jpg" alt="113 Causes of Death"></img></a></td>612 <td><a href="query/NCHS113.html"><img src="contentfile/image/home/113.jpg" alt="113 Causes of Death"></img></a></td> 613 613 <td><a href="query/NCHS113.html">List of 113 Selected Causes of Death</a></td> 614 614 </tr> … … 620 620 <table cellpadding="0" cellspacing="0" width="100%"> 621 621 <tr> 622 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>622 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 623 623 <td><a href="home/Help.html">Main Help Page</a></td> 624 624 </tr> … … 628 628 <table cellpadding="0" cellspacing="0" width="100%"> 629 629 <tr> 630 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>630 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 631 631 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 632 632 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/NCHS50.xml
r23267 r25268 559 559 <table cellpadding="0" cellspacing="0" width="100%"> 560 560 <tr> 561 <td><a href="query/selection/mort/MortSelection.html"><img src=" view/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td>561 <td><a href="query/selection/mort/MortSelection.html"><img src="contentfile/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td> 562 562 <td><a href="query/selection/mort/MortSelection.html">Mortality Query</a></td> 563 563 </tr> … … 567 567 <table cellpadding="0" cellspacing="0" width="100%"> 568 568 <tr> 569 <td><a href="query/NCHS33.html"><img src=" view/image/home/33.jpg" alt="33 Major Causes of Death"></img></a></td>569 <td><a href="query/NCHS33.html"><img src="contentfile/image/home/33.jpg" alt="33 Major Causes of Death"></img></a></td> 570 570 <td><a href="query/NCHS33.html">List of 33 Major Causes of Death</a></td> 571 571 </tr> … … 577 577 <table cellpadding="0" cellspacing="0" width="100%"> 578 578 <tr> 579 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>579 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 580 580 <td><a href="query/Help.html">Query Help Page</a></td> 581 581 </tr> … … 585 585 <table cellpadding="0" cellspacing="0" width="100%"> 586 586 <tr> 587 <td><a href="query/NCHS113.html"><img src=" view/image/home/113.jpg" alt="113 Causes of Death"></img></a></td>587 <td><a href="query/NCHS113.html"><img src="contentfile/image/home/113.jpg" alt="113 Causes of Death"></img></a></td> 588 588 <td><a href="query/NCHS113.html">List of 113 Selected Causes of Death</a></td> 589 589 </tr> … … 595 595 <table cellpadding="0" cellspacing="0" width="100%"> 596 596 <tr> 597 <td><a href="home/Help.html"><img src=" view/image/home/questionGreen.jpg" alt="Main Help"></img></a></td>597 <td><a href="home/Help.html"><img src="contentfile/image/home/questionGreen.jpg" alt="Main Help"></img></a></td> 598 598 <td><a href="home/Help.html">Main Help Page</a></td> 599 599 </tr> … … 603 603 <table cellpadding="0" cellspacing="0" width="100%"> 604 604 <tr> 605 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>605 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 606 606 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 607 607 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/OtherCauses.xml
r23267 r25268 90 90 <table cellpadding="0" cellspacing="0" width="100%"> 91 91 <tr> 92 <td><a href="query/selection/mort/MortSelection.html"><img src=" view/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td>92 <td><a href="query/selection/mort/MortSelection.html"><img src="contentfile/image/home/queryDeath.jpg" alt="Mortality Query"></img></a></td> 93 93 <td><a href="query/selection/mort/MortSelection.html">Mortality Query</a></td> 94 94 </tr> … … 98 98 <table cellpadding="0" cellspacing="0" width="100%"> 99 99 <tr> 100 <td><a href="query/NCHS33.html"><img src=" view/image/home/33.jpg" alt="33 Major Causes of Death"></img></a></td>100 <td><a href="query/NCHS33.html"><img src="contentfile/image/home/33.jpg" alt="33 Major Causes of Death"></img></a></td> 101 101 <td><a href="query/NCHS33.html">List of 33 Major Causes of Death</a></td> 102 102 </tr> … … 108 108 <table cellpadding="0" cellspacing="0" width="100%"> 109 109 <tr> 110 <td><a href="query/Help.html"><img src=" view/image/home/query.jpg" alt="Query Help"></img></a></td>110 <td><a href="query/Help.html"><img src="contentfile/image/home/query.jpg" alt="Query Help"></img></a></td> 111 111 <td><a href="query/Help.html">Query Help Page</a></td> 112 112 </tr> … … 116 116 <table cellpadding="0" cellspacing="0" width="100%"> 117 117 <tr> 118 <td><a href="query/NCHS50.html"><img src=" view/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td>118 <td><a href="query/NCHS50.html"><img src="contentfile/image/home/50.jpg" alt="50 Rankable Causes of Death"></img></a></td> 119 119 <td><a href="query/NCHS50.html">List of 50 Rankable Causes of Death</a></td> 120 120 </tr> … … 126 126 <table cellpadding="0" cellspacing="0" width="100%"> 127 127 <tr> 128 <td><a href="home/Welcome.html"><img src=" view/image/home/home.jpg" alt="Home Page"></img></a></td>128 <td><a href="home/Welcome.html"><img src="contentfile/image/home/home.jpg" alt="Home Page"></img></a></td> 129 129 <td align="left"><a href="home/Welcome.html">NJSHAD Home Page</a></td> 130 130 </tr> … … 134 134 <table cellpadding="0" cellspacing="0" width="100%"> 135 135 <tr> 136 <td><a href="query/NCHS113.html"><img src=" view/image/home/113.jpg" alt="113 Selected Causes of Death"></img></a></td>136 <td><a href="query/NCHS113.html"><img src="contentfile/image/home/113.jpg" alt="113 Selected Causes of Death"></img></a></td> 137 137 <td><a href="query/NCHS113.html">List of 113 Selected Causes of Death</a></td> 138 138 </tr> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/Tips.xml
r23267 r25268 37 37 <ul> 38 38 <li>For step-by-step query system examples see the 39 <a href="query/Tutorials.html">Query System Tutorial</a> <img src="../ view/image/home/longrightarrow.png" alt="arrow" title="arrow"/></li>39 <a href="query/Tutorials.html">Query System Tutorial</a> <img src="../contentfile/image/home/longrightarrow.png" alt="arrow" title="arrow"/></li> 40 40 <li>Use <a href="home/AARate.html">age-adjusted rates</a> 41 41 when you want to <strong>compare</strong> areas, for example New Jersey and U.S. data.</li> … … 81 81 Illustrated step-by-step instructions for building a query in NJSHAD. 82 82 <br/><br/> 83 <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Acrobat icon" title="PDF version"/> <a href="view/sharedstatic/tutorial_overview.pdf">Query Tutorial - PDF</a>83 <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Acrobat icon" title="PDF version"/> <a href="view/sharedstatic/tutorial_overview.pdf">Query Tutorial - PDF</a> 84 84 </div> 85 85 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/query/Tutorials.xml
r23267 r25268 34 34 <strong>Illustrated step-by-step instructions for building a query in NJSHAD.</strong> 35 35 <br/><br/> 36 <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Acrobat icon" title="PDF version"/> <a href="view/sharedstatic/tutorial_overview.pdf">Query Overview - PDF</a>36 <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Acrobat icon" title="PDF version"/> <a href="view/sharedstatic/tutorial_overview.pdf">Query Overview - PDF</a> 37 37 <!--li><a href="http://health.utah.gov/opha/IBIShelp/query/tutorial_drilldown.ppt" target="_blank">Drilldowns - PowerPoint</a> 38 38 or <a href="http://health.utah.gov/opha/IBIShelp/query/tutorial_drilldown.pdf" target="_blank">Drilldowns - pdf</a> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/resources/BirthDeathData.xml
r23267 r25268 65 65 <li><a href="query/Introduction.html#prelim" class="Bold">Preliminary State-Level Birth Statistics</a></li> 66 66 <br/> 67 <li><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" class="Bold" target="_blank">Older Reports of Birth Data</a>: 1877-2000 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></li>67 <li><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" class="Bold" target="_blank">Older Reports of Birth Data</a>: 1877-2000 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></li> 68 68 </ul> 69 69 </CONTENT> … … 104 104 </li> 105 105 <br/> 106 <li><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" class="Bold" target="_blank">Older Reports of Fetal Death Data</a>: 1877-2000 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></li>106 <li><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" class="Bold" target="_blank">Older Reports of Fetal Death Data</a>: 1877-2000 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></li> 107 107 </ul> 108 108 </CONTENT> … … 146 146 </li> 147 147 <br/> 148 <li><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" class="Bold" target="_blank">Older Reports of Infant Death Data</a>: 1877-2000 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></li>148 <li><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" class="Bold" target="_blank">Older Reports of Infant Death Data</a>: 1877-2000 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></li> 149 149 </ul> 150 150 </CONTENT> … … 187 187 <li><a href="query/Introduction.html#prelim" class="Bold">Preliminary State-Level Death Statistics</a></li> 188 188 <br/> 189 <li><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" class="Bold" target="_blank">Older Reports of Death Data</a>: 1877-2000 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></li>189 <li><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" class="Bold" target="_blank">Older Reports of Death Data</a>: 1877-2000 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></li> 190 190 </ul> 191 191 </CONTENT> … … 202 202 <tr><th colspan="2" height="28"><h2>Copies of Certificates</h2></th></tr> 203 203 <tr> 204 <td width="10%" valign="center"><a href="http://www.state.nj.us/health/vital/index.shtml" target="_blank"><img src=" view/image/home/certificate.png" style="height:60px;" title="Go to OVSR website" alt="certificate icon"/></a></td>204 <td width="10%" valign="center"><a href="http://www.state.nj.us/health/vital/index.shtml" target="_blank"><img src="contentfile/image/home/certificate.png" style="height:60px;" title="Go to OVSR website" alt="certificate icon"/></a></td> 205 205 <td width="90%" valign="center" align="left"> 206 206 Go to the New Jersey Department of Health's -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/resources/CHAcontactlist.xml
r23267 r25268 95 95 <div class="panel-body"> 96 96 <ul><li><a href="http://lwd.state.nj.us/labor/lpa/dmograph/est/est_index.html" class="Bold" target="_blank">NJ State Data Center</a>: 97 Data are provided for the state, metropolitan areas, counties, and municipalities.<img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li></ul>97 Data are provided for the state, metropolitan areas, counties, and municipalities.<img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li></ul> 98 98 </div> 99 99 </div> … … 107 107 <li><a href="https://www.census.gov/data-tools/demo/sahie/#/?s_statefips=34" class="Bold" target="_blank">All Types</a> 108 108 <a href="https://www.census.gov/data-tools/demo/sahie/#/?s_statefips=34" class="Bold" target="_blank"> 109 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li>109 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li> 110 110 <li><a href="http://www.medicare.gov/default.aspx" class="Bold" target="_blank">Medicare</a> 111 111 <a href="http://www.medicare.gov/default.aspx" class="Bold" target="_blank"> 112 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li>112 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li> 113 113 <li><a href="http://www.nj.gov/humanservices/dmahs/clients/medicaid/" class="Bold" target="_blank">Medicaid</a> 114 114 <a href="http://www.nj.gov/humanservices/dmahs/clients/medicaid/" class="Bold" target="_blank"> 115 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li>115 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li> 116 116 <li><a href="http://www.njfamilycare.org/analytics/home.html" class="Bold" target="_blank">NJ FamilyCare</a> 117 117 <a href="http://www.njfamilycare.org/analytics/home.html" class="Bold" target="_blank"> 118 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li>118 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></a></li> 119 119 </ul> 120 120 </div> … … 128 128 </div> 129 129 <div class="panel-body"> 130 <ul><li><a href="http://www.nj.gov/health/lh/community/governmental-partnerships/" class="Bold">County CHIP Reports</a> identify high priority public health issues for the county. <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li></ul>130 <ul><li><a href="http://www.nj.gov/health/lh/community/governmental-partnerships/" class="Bold">County CHIP Reports</a> identify high priority public health issues for the county. <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li></ul> 131 131 </div> 132 132 </div> … … 141 141 <li><a href="/indicator/view/NJASTHMAHOSP.stateAAR.html">Hospitalizations</a></li> 142 142 <li><a href="query/selection/njbrfs/BRFSSSelection.html">Prevalence among adults</a></li> 143 <li><a href="http://www.state.nj.us/health/fhs/chronic/asthma/in-nj/" target="_blank">County profiles</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>143 <li><a href="http://www.state.nj.us/health/fhs/chronic/asthma/in-nj/" target="_blank">County profiles</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 144 144 </ul> 145 145 <br/> … … 147 147 <h2>Birth Defects</h2> 148 148 <ul> 149 <li><a href="http://www.nj.gov/health/fhs/bdr/datum/" target="_blank">County profiles</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>149 <li><a href="http://www.nj.gov/health/fhs/bdr/datum/" target="_blank">County profiles</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 150 150 </ul> 151 151 <br/> … … 156 156 <li><a href="/indicator/complete_profile/CancerIncidence.html">Incidence</a></li> 157 157 <li><a href="/indicator/complete_profile/CancerDeath.html">Mortality</a></li> 158 <li><a href="http://nj.gov/health/ces/contact.shtml" target="_blank">Contact Cancer Epidemiology Services</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>158 <li><a href="http://nj.gov/health/ces/contact.shtml" target="_blank">Contact Cancer Epidemiology Services</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 159 159 </ul> 160 160 <br/> … … 165 165 <li><a href="query/selection/njbrfs/BRFSSSelection.html">Risk factors</a>: 166 166 Overweight, physical activity, smoking, nutrition, cholesterol level, hypertension, diabetes</li> 167 <li><a href="http://www.nj.gov/health/fhs/chronic/heart-disease-stroke/" target="_blank">Contact Heart Disease and Stroke Prevention Program</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>167 <li><a href="http://www.nj.gov/health/fhs/chronic/heart-disease-stroke/" target="_blank">Contact Heart Disease and Stroke Prevention Program</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 168 168 </ul><br/> 169 169 … … 172 172 <li><a href="query/selection/commdis/CommDisSelection.html">Infectious and zoonotic disease incidence</a></li> 173 173 <li><a href="query/selection/std/STDSelection.html">STD incidence</a></li> 174 <li><a href="http://www.state.nj.us/health/hivstdtb/hiv-aids/statmap.shtml" target="_blank">AIDS/HIV</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>175 <li><a href="http://www.state.nj.us/health/hivstdtb/stds/stats.shtml" target="_blank">STD Program</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>176 <li><a href="http://www.state.nj.us/health/hivstdtb/tb/" target="_blank">Tuberculosis</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>177 <li><a href="http://www.state.nj.us/health/cd/" target="_blank">Contact IZD Program for municipality-level data</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>174 <li><a href="http://www.state.nj.us/health/hivstdtb/hiv-aids/statmap.shtml" target="_blank">AIDS/HIV</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 175 <li><a href="http://www.state.nj.us/health/hivstdtb/stds/stats.shtml" target="_blank">STD Program</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 176 <li><a href="http://www.state.nj.us/health/hivstdtb/tb/" target="_blank">Tuberculosis</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 177 <li><a href="http://www.state.nj.us/health/cd/" target="_blank">Contact IZD Program for municipality-level data</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 178 178 </ul><br/> 179 179 … … 181 181 <ul> 182 182 <li><a href="query/selection/njbrfs/BRFSSSelection.html">Prevalence among adults</a></li> 183 <li><a href="http://www.nj.gov/health/fhs/chronic/diabetes/" target="_blank">Contact Diabetes Prevention and Control Program</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>183 <li><a href="http://www.nj.gov/health/fhs/chronic/diabetes/" target="_blank">Contact Diabetes Prevention and Control Program</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 184 184 </ul><br/> 185 185 … … 189 189 Nutrition, physical activity, and obesity surveillance</a></li> 190 190 <li><a href="query/selection/njbrfs/BRFSSSelection.html">Prevalence among adults</a></li> 191 <li><a href="http://www.nj.gov/health/nutrition/" target="_blank">Contact Office of Nutrition and Fitness</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>191 <li><a href="http://www.nj.gov/health/nutrition/" target="_blank">Contact Office of Nutrition and Fitness</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 192 192 </ul><br/> 193 193 … … 195 195 <ul> 196 196 <li><a href="query/selection/njbrfs/BRFSSSelection.html">Alcohol and tobacco use among adults</a></li> 197 <li><a href="http://www.nj.gov/oag/njcares/" target="_blank">Opioids in New Jersey</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>198 <li><a href="http://www.nj.gov/education/students/yrbs/" target="_blank">Student Health Survey (9th-12th grade)</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>199 <!--li><a href="http://www.state.nj.us/humanservices/dmhas/publications/surveys/" target="_blank">Middle School Survey (7th-8th grade)</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li-->200 <li><a href="http://www.nj.gov/education/schools/vandv/index.html" target="_blank">Violence, Vandalism And Substance Abuse In New Jersey Schools</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>201 <li><a href="http://www.samhsa.gov/data/node/20" target="_blank">U.S. Substance Abuse and Mental Health Services Administration</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>202 <li><a href="https://www.state.nj.us/humanservices/dmhas/home/" target="_blank">Contact Mental Health and Addiction Services</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>197 <li><a href="http://www.nj.gov/oag/njcares/" target="_blank">Opioids in New Jersey</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 198 <li><a href="http://www.nj.gov/education/students/yrbs/" target="_blank">Student Health Survey (9th-12th grade)</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 199 <!--li><a href="http://www.state.nj.us/humanservices/dmhas/publications/surveys/" target="_blank">Middle School Survey (7th-8th grade)</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li--> 200 <li><a href="http://www.nj.gov/education/schools/vandv/index.html" target="_blank">Violence, Vandalism And Substance Abuse In New Jersey Schools</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 201 <li><a href="http://www.samhsa.gov/data/node/20" target="_blank">U.S. Substance Abuse and Mental Health Services Administration</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 202 <li><a href="https://www.state.nj.us/humanservices/dmhas/home/" target="_blank">Contact Mental Health and Addiction Services</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 203 203 </ul> 204 204 </div> … … 211 211 <div class="panel-body"> 212 212 <ul> 213 <li><a href="https://www.rwjf.org/en/library/interactives/whereyouliveaffectshowlongyoulive.html" class="Bold" target="_blank"> U.S. Small-area Life Expectancy Estimates Project (USALEEP)</a>: Enter an address or zip code to compare average life expectancy for that neighborhood compared to its county, state, and the U.S. <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>214 <li><a href="https://www.cdc.gov/nchs/data-visualization/life-expectancy/" class="Bold" target="_blank">USALEEP Interactive Map</a>: Life expectancy estimates mapped by state, county, and Census tract <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li>213 <li><a href="https://www.rwjf.org/en/library/interactives/whereyouliveaffectshowlongyoulive.html" class="Bold" target="_blank"> U.S. Small-area Life Expectancy Estimates Project (USALEEP)</a>: Enter an address or zip code to compare average life expectancy for that neighborhood compared to its county, state, and the U.S. <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 214 <li><a href="https://www.cdc.gov/nchs/data-visualization/life-expectancy/" class="Bold" target="_blank">USALEEP Interactive Map</a>: Life expectancy estimates mapped by state, county, and Census tract <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/></li> 215 215 </ul> 216 216 </div> … … 222 222 223 223 <div class="Note"> 224 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/>224 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/> 225 225 Clicking this link will take you off the NJSHAD website. 226 226 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/resources/HealthDisparities.xml
r23267 r25268 49 49 <CONTENT> 50 50 <!--a href="http://nj.gov/health/chs/hnj2010u05/index.shtml" target="_blank" title="Go to HNJ2010 Update 2005 page"> 51 <img src=" view/image/home/HNJ2010.jpg" style="float:left; vertical-align:text-top; margin:0; margin-right:15px; height:100px;" title="HNJ2010" alt="HealthyNJ2010"/></a-->51 <img src="contentfile/image/home/HNJ2010.jpg" style="float:left; vertical-align:text-top; margin:0; margin-right:15px; height:100px;" title="HNJ2010" alt="HealthyNJ2010"/></a--> 52 52 53 53 <!--a href="http://nj.gov/health/accreditation/sha2010.shtml" target="_blank" title="Go to SHA2010 page"> 54 <img src=" view/image/home/SHAcover.jpg" style="float:right; margin:0; margin-left:15px; height:200px;" title="SHA2010" alt="SHA2010"/></a>54 <img src="contentfile/image/home/SHAcover.jpg" style="float:right; margin:0; margin-left:15px; height:200px;" title="SHA2010" alt="SHA2010"/></a> 55 55 56 56 <a href="http://nj.gov/health/chs/hnj2020/about/history/index.shtml#2" class="Bold" target="_blank">Healthy New Jersey 2010: A Health Agenda for the … … 80 80 State Health Improvement Plan</a> (SHIP). As of April, 2018, the 2018 SHA is undergoing edits based on a public comment period in January and February. The 2018 SHIP is in the planning stage and will focus on the SHA's six priorities for 2018-2020: 81 81 <a href="http://nj.gov/health/chs/hnj2020/about/intro/index.shtml" target="_blank" title="Go to HNJ2020 page"> 82 <img src=" view/image/home/HNJ2020.png" style="float:right; vertical-align:text-top; margin:0; height:100px;" title="HNJ2020" alt="HealthyNJ2020"/></a>82 <img src="contentfile/image/home/HNJ2020.png" style="float:right; vertical-align:text-top; margin:0; height:100px;" title="HNJ2020" alt="HealthyNJ2020"/></a> 83 83 <ul> 84 84 <li>Improve access to health services</li> … … 117 117 <li>cardiovascular disease</li> 118 118 <a href="indicator/CatDisparity.html" title="Go to Disparity Priority Areas index"> 119 <img src=" view/image/home/inequality.png" style="float:right; vertical-align:text-top; margin:0;margin-left:15px; margin-right:150px; height:120px;" title="Health Inequity symbol" alt="HealthInequity"/></a>119 <img src="contentfile/image/home/inequality.png" style="float:right; vertical-align:text-top; margin:0;margin-left:15px; margin-right:150px; height:120px;" title="Health Inequity symbol" alt="HealthInequity"/></a> 120 120 <li>diabetes</li> 121 121 <li>hepatitis C</li> … … 136 136 <CONTENT> 137 137 <a href="http://nj.gov/health/chs/documents/re_coding_standard.pdf" target="_blank" title="Go to coding guidelines page"> 138 <img src=" view/image/home/codingguidelines.png" style="float:right; vertical-align:text-top; margin:0; margin-left:15px; margin-bottom:15px; height:120px;" title="Race and Ethnicity Coding" alt="RECodingGuidelines"/></a>138 <img src="contentfile/image/home/codingguidelines.png" style="float:right; vertical-align:text-top; margin:0; margin-left:15px; margin-bottom:15px; height:120px;" title="Race and Ethnicity Coding" alt="RECodingGuidelines"/></a> 139 139 In 2007, NJDOH released its <b>Strategic Plan to Eliminate Health Disparities in New Jersey</b>. 140 140 The plan set a targeted agenda … … 164 164 <br/><br/> 165 165 <a href="http://nj.gov/njsncc/index.shtml" target="_blank" title="Go to NJSNCC"> 166 <img src=" view/image/home/njsncc.png" style="float:left; vertical-align:text-bottom; margin:0; margin-right:20px; height:100px;" title="NJSNCC" alt="NJSNCC"/></a>166 <img src="contentfile/image/home/njsncc.png" style="float:left; vertical-align:text-bottom; margin:0; margin-right:20px; height:100px;" title="NJSNCC" alt="NJSNCC"/></a> 167 167 The Office of Minority and Multicultural Health offers health professionals many cultural competency resources, including the <a href="http://nj.gov/health/ommh/documents/clas_standards.pdf">National Standards for Culturally and Linguistically Appropriate Services (CLAS) in Health and Health Care</a>, known as "CLAS Standards." There are 15 CLAS Standards, however the first one serves as the frame and essential goal of the other fourteen: "Provide effective, equitable, understandable, respectful, and quality care and services that are responsive to diverse cultural health beliefs and practices, preferred language, health literacy, and other communication needs."<span class="SmallerFont"><sup><a href="#ref4">4</a></sup></span> 168 168 <br/><br/> … … 176 176 <CONTENT> 177 177 <a href="http://nj.gov/health/chs/documents/newest_new_jerseyans.pdf" target="_blank" title="Go to Newest NJans page"> 178 <img src=" view/image/home/newestnewjerseyans.png" style="float:left; vertical-align:text-top; margin:0; margin-right:15px; height:175px;" title="Newest New Jerseyans" alt="Newest New Jerseyans"/></a>178 <img src="contentfile/image/home/newestnewjerseyans.png" style="float:left; vertical-align:text-top; margin:0; margin-right:15px; height:175px;" title="Newest New Jerseyans" alt="Newest New Jerseyans"/></a> 179 179 Published in February, 2011, <b> 180 180 The Health of the Newest New Jerseyans</b> updates health care providers statewide … … 193 193 <h2>NJSHAD Community Dashboard</h2> 194 194 <a href="community/snapshot/Builder.html">Dashboards of health indicators</a> for Asians, Blacks, Hispanics, and Whites compared to statewide and national rates for: 195 <a href="community/snapshot/Builder.html" title="Go to community dashboard builder"><img src=" view/image/home/snapshoticon.png" style="float:right; vertical-align:text-bottom; margin:0; margin-left:20px; margin-right:150px; height:100px;" title="Community Reports" alt="Community Dashboard icon"/></a>195 <a href="community/snapshot/Builder.html" title="Go to community dashboard builder"><img src="contentfile/image/home/snapshoticon.png" style="float:right; vertical-align:text-bottom; margin:0; margin-left:20px; margin-right:150px; height:100px;" title="Community Reports" alt="Community Dashboard icon"/></a> 196 196 <ul> 197 197 <li>Birth and Infant Health</li> … … 202 202 203 203 <!--a href="indicator/CatLHI.html" title="Go to LHI page"> 204 <img src=" view/image/home/LHI.png" style="float:right; vertical-align:text-top; margin:0; margin-top:-15px; margin-left:15px; height:90px;" title="Leading Health Indicators" alt="Leading Health Indicators"/></a>204 <img src="contentfile/image/home/LHI.png" style="float:right; vertical-align:text-top; margin:0; margin-top:-15px; margin-left:15px; height:90px;" title="Leading Health Indicators" alt="Leading Health Indicators"/></a> 205 205 <h2>Leading Health Indicators</h2> 206 206 As a group, the <a href="indicator/CatLHI.html">Leading Health Indicators</a> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/resources/Introduction.xml
r23267 r25268 67 67 <td style="width:10% vertical-align:middle"> 68 68 <a href="resources/Offices.html" target="_blank" title="Go to the resources index"> 69 <img src=" view/image/home/OrgChartGold.png" alt="NJDOH office index" align="left" style="width:55px"/></a>69 <img src="contentfile/image/home/OrgChartGold.png" alt="NJDOH office index" align="left" style="width:55px"/></a> 70 70 </td> 71 71 <td width="90%" valign="top" align="left"> … … 78 78 <td style="width:10% vertical-align:middle"> 79 79 <a href="resources/BirthDeathData.html" target="_blank" title="Go to Birth, Death, Infant Death, and Fetal Death page"> 80 <img src=" view/image/home/CertificateGold.png" alt="Vital Event Data" align="left" /></a>80 <img src="contentfile/image/home/CertificateGold.png" alt="Vital Event Data" align="left" /></a> 81 81 </td> 82 82 <td width="90%" valign="top" align="left"> … … 89 89 <td style="width:10% vertical-align:middle"> 90 90 <a href="resources/CHAcontactlist.html" target="_blank" title="Go to the Community Health Assessment Info page"> 91 <img src=" view/image/home/GreenAssessment.png" alt="Community Health Assessment info" align="left" style="width:55px"/></a>91 <img src="contentfile/image/home/GreenAssessment.png" alt="Community Health Assessment info" align="left" style="width:55px"/></a> 92 92 </td> 93 93 <td width="90%" valign="top" align="left"> … … 100 100 <td style="width:10% vertical-align:middle"> 101 101 <a href="resources/OtherWDQSs.html" target="_blank" title="Go to the Other Data Access and Analysis Tools page"> 102 <img src=" view/image/home/datagov.png" alt="Other Data Access and Analysis Tools" align="left" style="width:55px"/></a>102 <img src="contentfile/image/home/datagov.png" alt="Other Data Access and Analysis Tools" align="left" style="width:55px"/></a> 103 103 </td> 104 104 <td width="90%" valign="top" align="left"> … … 111 111 <td style="width:10% vertical-align:middle"> 112 112 <a href="http://nj.gov/health/epht/index.shtml" target="_blank" title="Go to NJEPHT website"> 113 <img src=" view/image/home/NewJersey_Tracking.png" alt="EPHT" align="left" style="width:55px"/></a>113 <img src="contentfile/image/home/NewJersey_Tracking.png" alt="EPHT" align="left" style="width:55px"/></a> 114 114 </td> 115 115 <td width="90%" valign="top" align="left"> 116 116 <ul><a href="http://nj.gov/health/epht/index.shtml" target="_blank"><h2 class="resources">Environmental Public Health Tracking (EPHT)</h2></a></ul> 117 <ul>New Jersey Environmental Public Health Tracking Program website <a href="http://nj.gov/health/epht/index.shtml" target="_blank"><img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></a></ul>117 <ul>New Jersey Environmental Public Health Tracking Program website <a href="http://nj.gov/health/epht/index.shtml" target="_blank"><img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/></a></ul> 118 118 </td> 119 119 </tr> … … 122 122 <td style="width:10% vertical-align:middle"> 123 123 <a href="resources/HealthDisparities.html" target="_blank" title="Go to Health Disparities page"> 124 <img src=" view/image/home/Ineq3.png" alt="Health Disparities" align="left" valign="top" style="width:55px"/></a>124 <img src="contentfile/image/home/Ineq3.png" alt="Health Disparities" align="left" valign="top" style="width:55px"/></a> 125 125 </td> 126 126 <td width="90%" valign="top" align="left"> … … 133 133 <td style="width:10% vertical-align:middle"> 134 134 <a href="resources/LHOinfo.html" target="_blank" title="Go to Info for LHOs page"> 135 <img src=" view/image/home/MapMarker.png" alt="Local Health" align="left" style="width:55px"/></a>135 <img src="contentfile/image/home/MapMarker.png" alt="Local Health" align="left" style="width:55px"/></a> 136 136 </td> 137 137 <td width="90%" valign="top" align="left"> … … 144 144 <td style="width:10% vertical-align:middle"> 145 145 <a href="resources/Marriages.html" target="_blank" title="Go to Marriage, CU, DP, Divorce page"> 146 <img src=" view/image/home/rings.jpg" alt="Marriage" align="left" /></a>146 <img src="contentfile/image/home/rings.jpg" alt="Marriage" align="left" /></a> 147 147 </td> 148 148 <td width="90%" valign="top" align="left"> … … 155 155 <td style="width:10% vertical-align:middle"> 156 156 <a href="view/sharedstatic/pvs.pdf" title="Go to Preliminary Vital Statistics page"> 157 <img src=" view/image/home/Pageloading.png" alt="Preliminary Vital Statistics" align="left" style="width:55px"/></a>157 <img src="contentfile/image/home/Pageloading.png" alt="Preliminary Vital Statistics" align="left" style="width:55px"/></a> 158 158 </td> 159 159 <td width="90%" valign="top" align="left"> 160 160 <ul><a href="view/sharedstatic/pvs.pdf"><h2 class="resources">Preliminary Vital Statistics</h2></a></ul> 161 <ul>Birth and death statistics for recent data years that have not yet been finalized <a href="view/sharedstatic/pvs.pdf"> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Download PDF"/></a>161 <ul>Birth and death statistics for recent data years that have not yet been finalized <a href="view/sharedstatic/pvs.pdf"> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Download PDF"/></a> 162 162 </ul> 163 163 </td> … … 167 167 <td style="width:10% vertical-align:middle"> 168 168 <a href="resources/vesince1879.html" target="_blank" title="Go to Vital Events trends page"> 169 <img src=" view/image/home/trend.jpg" alt="Vital Event Trends" align="left" /></a>169 <img src="contentfile/image/home/trend.jpg" alt="Vital Event Trends" align="left" /></a> 170 170 </td> 171 171 <td width="90%" valign="top" align="left"> … … 190 190 <ul> 191 191 <li>2018 data added to <a href="view/sharedstatic/Marriages.xlsx">Marriage</a> counts 192 <a href="view/sharedstatic/Marriages.xlsx"> <img src="../ view/image/excel.gif" alt="Excel icon" width="16" height="16" title="Download MS Excel spreadsheet"/></a>192 <a href="view/sharedstatic/Marriages.xlsx"> <img src="../contentfile/image/excel.gif" alt="Excel icon" width="16" height="16" title="Download MS Excel spreadsheet"/></a> 193 193 (updated: August 2020)</li><br/> 194 194 <li>2019 <a href="view/sharedstatic/Marriages.xlsx">Civil Union and Domestic Partnership</a> counts updated 195 <a href="view/sharedstatic/Marriages.xlsx"> <img src="../ view/image/excel.gif" alt="Excel icon" width="16" height="16" title="Download MS Excel spreadsheet"/></a>195 <a href="view/sharedstatic/Marriages.xlsx"> <img src="../contentfile/image/excel.gif" alt="Excel icon" width="16" height="16" title="Download MS Excel spreadsheet"/></a> 196 196 (updated: August 2020)</li> 197 197 <br/> … … 199 199 <br/> 200 200 <!--li><a href="view/sharedstatic/pvs.pdf">Preliminary 2015 Birth and Death Data</a> 201 <a href="view/sharedstatic/pvs.pdf"> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Download PDF"/></a>201 <a href="view/sharedstatic/pvs.pdf"> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Download PDF"/></a> 202 202 (updated: Jan 2017)</li><br/--> 203 203 </ul> … … 206 206 <br/> 207 207 <div class="Note"> 208 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/>208 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Additional Information"/> 209 209 Clicking this link will take you off the NJSHAD website.<br/><br/> 210 <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/>210 <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="PDF logo"/> 211 211 Clicking this link will take you to a PDF document.<br/><br/> 212 <img src="../ view/image/excel.gif" alt="Excel icon" width="16" height="16" title="Excel logo"/>212 <img src="../contentfile/image/excel.gif" alt="Excel icon" width="16" height="16" title="Excel logo"/> 213 213 Clicking this link will take you to an Excel spreadsheet. 214 214 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/resources/LHOinfo.xml
r23267 r25268 55 55 56 56 <hr/><br/> 57 <new>NEW! </new> CDC's <a href="https://www.cdc.gov/places/index.html" target="_blank" class="Bold">PLACES Project</a> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> provides model-based estimates of 27 chronic disease risk measures at county, municipality, <a href="https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_13">census tract</a>, and <a href="https://www.census.gov/programs-surveys/geography/guidance/geo-areas/zctas.html">ZIP code tabulation area</a> (ZCTA) levels for all areas with a population of at least 50 residents.57 <new>NEW! </new> CDC's <a href="https://www.cdc.gov/places/index.html" target="_blank" class="Bold">PLACES Project</a> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> provides model-based estimates of 27 chronic disease risk measures at county, municipality, <a href="https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_13">census tract</a>, and <a href="https://www.census.gov/programs-surveys/geography/guidance/geo-areas/zctas.html">ZIP code tabulation area</a> (ZCTA) levels for all areas with a population of at least 50 residents. 58 58 <br/><br/> 59 59 60 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> <a href="https://www.cityhealthdashboard.com/" target="_blank" class="Bold">City Health Dashboard</a> contains data for 37 key measures for 27 NJ municipalities. Data are available at the Census tract level for some measures.60 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> <a href="https://www.cityhealthdashboard.com/" target="_blank" class="Bold">City Health Dashboard</a> contains data for 37 key measures for 27 NJ municipalities. Data are available at the Census tract level for some measures. 61 61 <br/><br/> 62 62 63 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> <a href="https://www.cdc.gov/nchs/data-visualization/life-expectancy/" target="_blank" class="Bold">U.S. Small-area Life Expectancy Estimates Project (USALEEP)</a>'s interactive map shows estimates of U.S. life expectancy at birth by state and census tract.63 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> <a href="https://www.cdc.gov/nchs/data-visualization/life-expectancy/" target="_blank" class="Bold">U.S. Small-area Life Expectancy Estimates Project (USALEEP)</a>'s interactive map shows estimates of U.S. life expectancy at birth by state and census tract. 64 64 <br/><br/> 65 65 66 <!--new>NEW! </new--> <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> <a href="https://www.rwjf.org/en/library/interactives/whereyouliveaffectshowlongyoulive.html" target="_blank" class="Bold">U.S. Small-area Life Expectancy Estimates Project (USALEEP)</a>'s interactive site allows users to enter an address or zip code and get average life expectancy for that neighborhood compared to its county, state, and the U.S.66 <!--new>NEW! </new--> <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> <a href="https://www.rwjf.org/en/library/interactives/whereyouliveaffectshowlongyoulive.html" target="_blank" class="Bold">U.S. Small-area Life Expectancy Estimates Project (USALEEP)</a>'s interactive site allows users to enter an address or zip code and get average life expectancy for that neighborhood compared to its county, state, and the U.S. 67 67 <br/><br/> 68 68 69 <img src="../ view/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> Links to all <a href="http://www.nj.gov/health/lh/community/" target="_blank">local health department</a> websites, contact info, and areas served.69 <img src="../contentfile/image/external_link.png" alt="external link icon" width="16" height="16" title="Clicking this link will take you off the NJSHAD website."/> Links to all <a href="http://www.nj.gov/health/lh/community/" target="_blank">local health department</a> websites, contact info, and areas served. 70 70 </div> 71 71 </div> -
adopters/nj/branches/3.0/src/main/webapps/doh-shad-content/xml/html_content/resources/Marriages.xml
r23267 r25268 46 46 <table> 47 47 <tr> 48 <td width="10%" valign="center"><a href="view/sharedstatic/Marriages.xls"><img src=" view/image/home/greenspreadsheet.png" style="height:60px;" title="Download MS Excel spreadsheet" alt="spreadsheet icon"/></a></td>48 <td width="10%" valign="center"><a href="view/sharedstatic/Marriages.xls"><img src="contentfile/image/home/greenspreadsheet.png" style="height:60px;" title="Download MS Excel spreadsheet" alt="spreadsheet icon"/></a></td> 49 49 <td width="80%" valign="center" align="left"> 50 50 Monthly <text class="Bold">marriage</text> counts by county of occurrence and annual <text class="Bold">civil union</text> 51 51 and <text class="Bold">domestic partnership</text> counts for 2005 to the present may be downloaded in 52 52 <a href="view/sharedstatic/Marriages.xlsx" class="Bold">Excel format</a> 53 <a href="view/sharedstatic/Marriages.xlsx"> <img src="../ view/image/excel.gif" alt="Excel icon" width="16" height="16" title="Download MS Excel spreadsheet"/></a>53 <a href="view/sharedstatic/Marriages.xlsx"> <img src="../contentfile/image/excel.gif" alt="Excel icon" width="16" height="16" title="Download MS Excel spreadsheet"/></a> 54 54 or 55 55 <a href="view/sharedstatic/Marriages.pdf" class="Bold">PDF format</a>. 56 <a href="view/sharedstatic/Marriages.pdf"> <img src="../ view/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Download PDF spreadsheet"/></a>56 <a href="view/sharedstatic/Marriages.pdf"> <img src="../contentfile/image/Adobe-Acrobat-Icon.gif" alt="Adobe Acrobat Reader icon" width="16" height="16" title="Download PDF spreadsheet"/></a> 57 57 </td> 58 58 </tr> 59 59 <tr height="10px"></tr> 60 60 <tr> 61 <td width="10%" valign="center"><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" target="_blank"><img src=" view/image/home/hlthstat60.jpg" style="height:60px;" title="Go to NJ Health Statistics archive website" alt="old annual report cover"/></a></td>61 <td width="10%" valign="center"><a href="http://www.libraries.rutgers.edu/history_of_medicine/NJHS/statistics" target="_blank"><img src="contentfile/image/home/hlthstat60.jpg" style="height:60px;" title="Go to NJ Health Statistics archive website" alt="old annual report cover"/></a></td> 62 62 <td width="80%" valign="center" align="left"> 63 63 Detailed marriage and divorce data for years before 2006 are available in the discontinued … … 77 77 <table> 78 78 <tr> 79 <td width="10%" valign="center"><a href="http://www.state.nj.us/health/vital/index.shtml" target="_blank"><img src=" view/image/home/certificate.png" style="height:60px;" title="Go to OVSR website" alt="certificate icon"/></a></td>79 &nbs