// JavaScript Document

function buildPageLinks(){
	var result = '<h3>Page Links</h3><a href="index.html">Home</a>';
	result = result +'<a href="Calendar.html">Calendar</a>';
	result = result + '<a href="Committees.html">NFLA Committees</a>';
	result = result + '<a href="Fire Mitigation Committee.html">Fire Mitigation</a>';
	result = result + '<a href="NorthForkHistoryProject.html">North Fork History Project</a>';
	result = result + '<a href="NFLADocuments.html">Documents/Meeting Minutes</a>';
	result = result + '<a href="Newsletters.html">Newsletters</a>';
	result = result + '<a href="docs/North Fork Zoning Regulations.pdf">Zoning Regulations</a>';
	result = result + '<a href="hallUsage.html">Hall Usage</a>';
	result = result + '<a href="Contact.html">Contact Us / Sign Up</a>';
	result = result + '<a href="About.html">About the NFLA</a>';
	
	result = result+'<p><h3>External Links</h3><a href="http://nflandowners.com/NFLUAC.html">NFLUAC</a>';
	result = result + '<a href="http://www.gravel.org/" target="_blank">NF Preservation Assoc.</a>';
	result = result +'<a href="http://www.wrh.noaa.gov/total_forecast/index.php?wfo=mso&zone=mtz002&fire=mtz105&county=mtc029&dgtl=1&lat=48.764583333333&lon=-114.29375"  target="_blank">North Fork Weather</a>';
	result = result +'<a href="http://www.fs.fed.us/r1/flathead/" target="_blank">Flathead National Forest</a>';
	result = result +'<a href="http://www.nps.gov/glac" target="_blank">Glacier National Park</a>';	
	result = result +'<a href="http://fwp.mt.gov/default.html" target="_blank">Montana FW&P</a>';
	result = result +'<a href="http://dnrc.mt.gov/" target="_blank">Montana DNRC</a>';
	result = result +'<a href="http://www.mt.gov/" target="_blank">State of Montana</a>';
	result = result +'<a href="http://www.co.flathead.mt.us/" target="_blank">Flathead County</a>';
	result = result +'<a href="http://flathead.mt.gov/planning_zoning/" target="_blank">Planning & Zoning Office</a>';
	result = result +'<a href="http://flathead.mt.gov/commissioner/" target="_blank">County Commissioners</a>';
	result = result + '<a href="http://flathead.mt.gov/sheriff/index.php" target="_blank">Sheriff Office</a>';
	result = result +'<a href="http://www.flatheadbasincommission.org/" target="_blank">Flathead Basin Commission</a>';
	result = result +'<a href="http://www.hungryhorsenews.com/" target="_blank">Hungry Horse News</a>';
	result = result +'<a href="http://www.dailyinterlake.com/" target="_blank">Daily Inter Lake</a>';
	result = result +'<a href="http://www.missoulian.com/" target="_blank">Missoulian</a>';
	result = result +'<a href="http://governor.mt.gov/" target="_blank">Gov. Brian Schweitzer </a>';
	result = result + '<a href="http://baucus.senate.gov/" target="_blank">Sen. Max Baucus </a>';
	result = result + '<a href="http://tester.senate.gov/" target="_blank">Sen. Jon Tester </a> ';
	result = result + '<a href="http://www.house.gov/rehberg/" target="_blank">Rep. Denny Rehberg</a>';
	result = result + '<a href="mailto:jdupont@flathead.mt.gov">Co. Comm. Jim Dupont</a>';
	
	result = result+'<p><h3>In Case of Emergency</h3>';
	result = result + '<a href="docs/EmergencyServices.pdf" target="_blank">Emergency Services</a>';
	result = result + '<a href="docs/EmergencyServicesAlertLandingZones.pdf" target="_blank">Alert Landing Zones</a>';
	
	return result;
}

function buildFooter(){
	var result = '<a href="About.html">About Us</a> | <a href="mailto:Contact@nflandowners.org">Contact Us</a> | &copy;2007-2011 North Fork Landowners&#8217; Association '
			
	return result;
}
