
	var linkHREF = new Array(12);
	var linkName = new Array(12);
	
	function foot()
		{
		setLinks();
		document.write("<base target=\"_self\">")
		upperLimit=10;
		document.write("<table border=\"0\" width=\"760\"  cellspacing=\"0\" cellpadding=\"1\" bgcolor=\"00AA00\">");
		document.write("<tr><td></td></tr></table>");
		document.write("<table border=\"0\" width=\"760\"  cellspacing=\"0\" cellpadding=\"0\">");
		document.write("<tr>");
		document.write("<td align=\"center\"  background=\"footer.jpg\" height=\"15\" valign=\"top\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
		document.write("<font size=\"1\" face=\"verdana\" color=\"990000\">")

		for (i=0;i<=upperLimit;i++)
			{
			if (linkHREF[i].length != 0)
				{document.write("<a href=\"" + linkHREF[i] + "\" + class=\"txtmaroon\">" + linkName[i] + "</a>");}
			else
				{document.write(linkName[i]);}

			if (i!=upperLimit)
				{
				document.write(" &nbsp;|&nbsp; ");
				}
				
			}
		document.write("</font>");
		document.write("</td>");
		document.write("</tr>");
		document.write("</table>");

		}
		
	function setLinks()		
		{
		linkHREF[0]="welcome.htm"
		linkName[0]="Home"
		
		linkHREF[1]="profile.htm"
		linkName[1]="Profile"
		
		linkHREF[2]="defaulter.htm"
		linkName[2]="Defaulters List"
		
		linkHREF[3]="processfee.htm"
		linkName[3]="Processing Fee"
		
		linkHREF[4]="transportform.htm"
		linkName[4]="Transport Loan"
		
		linkHREF[5]="schemes.htm"
		linkName[5]="Industrial Loan"
		
		linkHREF[6]="sanction.htm"
		linkName[6]="Sanction of Loan"
		
		linkHREF[7]="financing.htm"
		linkName[7]="Assistance for Industries"

		linkHREF[8]="interest.htm"
		linkName[8]="Interest Rates"

		linkHREF[9]="contact.htm"
		linkName[9]="Contact Us"

		}
             
