//Function to display footer
function writeFooter(section)
{
	var strHomePath = "";
	var strSubPath = "";
	
	if (section == "home")
	{
		strHomePath = "";
		strSubPath = "site/";
	}
	else if (section == "sub")
	{
		strHomePath = "../../";
		strSubPath = "../"
	}
	//Begin footer display
	document.write("<table border='0' width='100%' align='center' cellpadding='0' cellspacing='0'>");	
	document.write("<tr>");
	document.write("<td class='footer_text' align='center'>");
	document.write("&nbsp;");	
	document.write("</td>");
	document.write("</tr>");
	//Display footer nav on sub pages
	if (section == "sub")
	{
		document.write("<tr>");
		document.write("<td class='footer_text' align='center'>");
		document.write("<a class='footer_link' href='" + strHomePath + "index.html'>Home</a> | \
						<a class='footer_link' href='" + strSubPath + "misc/about_eahs.html'>About EAHS</a> | \
						<a class='footer_link' href='" + strSubPath + "departments/depart_index.html'>Academic Departments</a> | \
						<a class='footer_link' href='" + strSubPath + "activities/activity_index.html'>Activities</a> | \
						<a class='footer_link' href='" + strSubPath + "alumni/alumni_index.html'>Alumni</a> | \
						<a class='footer_link' href='" + strSubPath + "athletics/sports_index.html'>Athletics</a> | \
						<a class='footer_link' href='" + strSubPath + "attendance_office/attend.html'>Attendance Office</a>");
		document.write("</td>");
		document.write("</tr>");
		document.write("<tr>");
		document.write("<td class='footer_text' align='center'>");
		document.write("<a class='footer_link' href='" + strSubPath + "misc/calendar_index.html'>Calendar</a> | \
						<a class='footer_link' href='" + strSubPath + "parents/parents_index.html'>Parents' Corner</a> | \
						<a class='footer_link' href='" + strSubPath + "student_resources/student_index.html'>Student Center</a> | \
						<a class='footer_link' href='" + strSubPath + "departments/student_services.html'>Student Services</a> | \
						<a class='footer_link' href='" + strSubPath + "nurse/nurse_index.html'>Nurse</a> | \
						<a class='footer_link' href='" + strSubPath + "tomcat_health/tomcat_health_index.html'>Tomcat Health Center</a>");
		document.write("</td>");
		document.write("</tr>");
		document.write("<tr>");
		document.write("<td class='footer_text' align='center'>");
		document.write("<a class='footer_link' href='" + strSubPath + "staff_dir/staff_dir.html'>Faculty Directory</a> | \
						<a class='footer_link' href='" + strSubPath + "misc/pbis.html'>PBIS</a> | \
						<a class='footer_link' href='" + strSubPath + "site_map/site_map.html'>Site Map</a>");
		document.write("</td>");
		document.write("</tr>");
		document.write("<tr>");	
		document.write("<td class='footer_text' align='center'>");
		document.write("&nbsp;");	
		document.write("</td>");
		document.write("</tr>");
	}	
	document.write("<tr>");
	document.write("<td class='footer_text' align='center'>");
	document.write("Copyright &copy; 2005 Custom Stone Works | <a href='http://www.customstoneworks.net/site/terms/terms.htm' class='footer_link'> Terms and Policies</a> ");	
	document.write("</td>");
	document.write("</tr>");
	document.write("</table>");
}
