-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
60 lines (48 loc) · 2.45 KB
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
require_once 'page_functions.php';
require_once 'dbconnection.php';
session_start();
open_html("About");
echo<<<_END
<div id="slideshow_container">
<div class="slideshow">
<ul class="slideshow">
<li class="show"><img width="940" height="250" src="images/main.png" alt=""Georgia Rural Health Association"" /></li>
<li><img width="940" height="250" src="images/atl.jpg" alt=""Atlanta"" /></li>
</ul>
</div>
</div>
<div id="site_content">
<div class="sidebar_container">
<div class="sidebar">
<div class="sidebar_item">
<h2>The Association's mission includes</h2>
<p>Promoting rural health as a distinct concern in Georgia
Serving as an advocate for rural health by promoting improved health status, healthcare systems, and health-related education for rural Georgians</p>
<p>Encouraging the development of appropriate healthcare resources for residents of rural Georgia</p>
</div>
</div>
</div>
<div id="content">
<div class="content_item">
<h2>About GRHA</h2>
<p> Georgia Rural Health Association (GRHA) is the oldest state rural health association in the country.
Founded in 1981, this nonprofit network of healthcare providers, educators, and individuals is united in its
commitment to improve the health and healthcare services of rural Georgians. GRHA understands that the rural
areas in our state are unique and differ greatly from urban areas in our state. These rural communities, and
those who provide healthcare services to them, require educational programs and support tailored to their specific needs.</p>
<br />
<h2>Rural Georgia Health Facts</h2>
<p>Georgia has 108 rural counties. (click HERE for listing of rural counties in GA)</p>
<ul>
<li>Poverty rates for rural counties exceed those in urban counties by 58%.</li>
<li>The rural counties have approximately half as many physicians and dramatic shortages of nurses, therapists, and nutritionists (per capita) as the metro counties.</li>
<li>The crude death rate is higher in rural areas than the urban county rate. From Georgia Center for Rural Health and Research.</li>
<li>Lower educational levels found in rural counties contribute to poverty and handicap the individual and family in making health decisions. </li>
</ul>
</div>
</div>
</div>
_END;
close_html();
?>