//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 valign='top'>");
	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 valign='top'>");
	document.write("<td class='footer_text' align='center' height=18>");
	document.write("<a class='footer_link' href='" + strHomePath + "ilaeopp/default.asp'>Home</a> | \
					<a class='footer_link' href='" + strSubPath + "misc/site_map.asp'>Site Map</a> | \ ");
	document.write("<a class='footer_link' href='" + strSubPath + "misc/contact_us.asp'>Contact ILAEOPP</a>");
	document.write("</td>");
	
	document.write("</tr>");
	document.write("<tr>");
	document.write("<td class='footer_text' align='center'>");
	document.write("&copy; 2004-2008 ILAEOPP. All Rights Reserved.&nbsp;&nbsp;");
	document.write("Site created by:&nbsp;&nbsp;");
	document.write("<a href='http://www.chicagoinnovative.com' class='footer_ibes' target='_blank'>IBES</a>");	
	document.write("</td>");
	
	document.write("</tr>");
	document.write("</table>");
}