// To Call these functions:
//		In the header section of your page:
//			<script src="http://hs.utah.gov/DHS_includes.js" language="javascript"></script>
//
//		In the body where you want the header or footer:
//			<script language="javascript">DHSHeader();</script>
//          <script language="javascript">DHSNavbar();</script>
//			<script language="javascript">DHSFooter();</script>

function poptastic(url)
{
	var newwindow;
	newwindow=window.open(url,'smallbox','height=250,width=575');
	if (window.focus) {newwindow.focus()}
}

function DHSHeader () {
	var htmlcode = "";
	htmlcode+= '<a href="http://www.hs.utah.gov"><img src="http://www.hs.utah.gov/images/banner_leftw.gif" alt="Utah Department of Human Services" width="289" height="51" border="0"></a>';
	htmlcode+= '<img id="titletext" src="http://www.hs.utah.gov/images/banner_images_r1_c1.jpg" alt="Utah Human Services" width="461" height="56">';

document.write(htmlcode);

}

function DHSNavbar () {
	var htmlcode = "";
	htmlcode+= '<ul>';
	htmlcode+= '<li> <a href="http://www.hs.utah.gov" title="Home">DHS Home </a></li>';	
	htmlcode+= '<li> | <a href="http://www.hs.utah.gov/service_childrenfamilies.htm" title="Services">Services </a></li>';	
	htmlcode+= '<li> | <a href="http://www.hs.utah.gov/a-zindex.shtml" title="A-Z Index">A-Z Index </a></li>';	
	htmlcode+= '<li> | <a href="javascript:poptastic(\'http://www.dhs.utah.gov/improve_survey.asp?\' + document.location)"><strong>Feedback</strong></a></li>';
	htmlcode+= '<ul>';
document.write(htmlcode);

}

function DHSFooter () {
	var htmlcode = "";
	htmlcode+= '<a href="http://www.hs.utah.gov">DHS Home</a> | ';
	htmlcode+= '<a href="http://www.hs.utah.gov/service_childrenfamilies.htm">DHS Services</a> | ';
	htmlcode+= '<a href="http://www.hs.utah.gov/a-zindex.shtml">DHS A-Z Index</a> | ';
	htmlcode+= '<a href="http://www.hsemployees.utah.gov">DHS Employees</a> | ';
	htmlcode+= '<a href="https://statejobs.utah.gov/">Careers</a> | ';
	htmlcode+= '<a href="http://www.utah.gov">Utah.gov Home</a> | ';
	htmlcode+= '<a href="http://www.utah.gov/disclaimer.html">Terms of Use</a> | ';
	htmlcode+= '<a href="http://www.utah.gov/privacypolicy.html">Privacy Policy</a> | ';
	htmlcode+= '<a href="http://www.utah.gov/accessibility.html">Accessibility Policy</a><br>';
    htmlcode+= 'Copyright &copy; 2009 State of Utah - All rights reserved.';

document.write(htmlcode);

}





