
	var linkHREF = new Array(12);
	var linkName = new Array(12);
	
	function foot(path)
		{
		setLinks(path);
		//document.write("<hr noshade color=\"#008800\">");
		document.write("<table bgcolor=\"008800\" width=\"750\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\" bordercolor=\"afb48f\" bordercolorlight=\"afb48f\" bordercolordark=\"afb48f\"><tr><td></td></tr></table>")
		document.write("<font size=\"1\" face=\"verdana\">")
		upperLimit=11;
		for (i=0;i<=upperLimit;i++)
			{
			document.write("[<a href=\"" + linkHREF[i] + "\">" + linkName[i] + "</a>]");
			if (i!=upperLimit)
				{
				document.write("&nbsp;&nbsp;");
				}
				
			}
		document.write("<BR><BR>");
		}
		
	function setLinks(path)		
		{
		//Documents Links Name
		linkHREF[0]="welcome.htm"
		linkName[0]="Home"
		
		linkHREF[1]="frst2.htm"
		linkName[1]="Forests"
		
		linkHREF[2]="wild2.htm"
		linkName[2]="Wild Life"

		linkHREF[3]="wildflower.htm"
		linkName[3]="Wild Flowers"

		linkHREF[4]="fty_trg.htm"
		linkName[4]="Forestry Training"

		linkHREF[5]="for_mgt.htm"
		linkName[5]="Participatory Forestry Mgt."

		linkHREF[6]="for_rev.htm"
		linkName[6]="Forest Sector Review"

		linkHREF[7]="eco2.htm"
		linkName[7]="Eco-Tourism"

		linkHREF[8]="whum2.htm"
		linkName[8]="Citizen Interface"
		
		linkHREF[9]="map2.htm"
		linkName[9]="Maps"

		linkHREF[10]=""
		linkName[10]="Events"

		linkHREF[11]="contact2.htm"
		linkName[11]="Contact Us"

		
		for (i=0;i<=12;i++)
			{
			linkHREF[i] = path + linkHREF[i];
			}
		}
