//-- this script terminates all web pages except index.htm
//-- it provides the closing table tags for the main cell
//--             the bottom rule
//--             the text links to all main pages
//--             a last modified date stamp
//--             and the closing table tag 
//-- close out the main cell and put the rule in a cell by itself
	document.write("</td></tr><tr><td></td>");
	document.write("<td><img src='images/rule600.gif' width=600 height=10></td></tr>");
	document.write("<tr><td></td>");
//-- build the cell with text links to main pages
	document.write("<td align=center>");
Bottomlnks();
//	document.write("| "+wfmahome+">Home</A> ") // put a home link on all pages
//	if (document.title !== 'What is WFMA') 
//		document.write("| "+wfmawhatis+">What is WFMA</A> ");
//	if (document.title !== 'Upcoming WFMA Events')
//		document.write("| "+wfmaevents+">Future WFMA Events</A> ");
//	if (document.title !== 'The WFMA Store')
//		document.write("| "+wfmastore+">WFMA Store</A> ");
//	document.write("|<BR>"); //---start a new line
//	if (document.title !== 'Recent WFMA Events')
//		document.write("| "+wfmapast+">Recent WFMA Events</A> ");
//	
//	if (document.title !== 'DC Area Folk Music')
//		document.write("|"+wfmadcfolk+">DC Area Folk Music</A> ");
//	if (document.title !== 'Other Folk Music Links')
//		document.write("| "+wfmaother+">Other Folk Music Links</A> ");
//	document.write("|<BR>"); //---start a new line
//	if (document.title !== 'Contacting WFMA')
//		document.write("| "+wfmacontact+">Contacting WFMA</A> ");
//	if (document.title !== 'Recent Changes to the WFMA Web Site')
//		document.write("| "+wfmalog+">What's New on The WFMA Web pages</A> ");
//	document.write("|<BR>") //---start a new line
//--Array of month names for datestamp routine 
	var months = new Array(13);
		months[1] = "January";
		months[2] = "February";
		months[3] = "March";
		months[4] = "April";
		months[5] = "May";
		months[6] = "June";
		months[7] = "July";
		months[8] = "August";
		months[9] = "September";
		months[10] = "October";
		months[11] = "November";
		months[12] = "December";
//--Put datestamp on page
	var dateObj = new Date(document.lastModified); //-- get last modified date
	var lmonth = months[dateObj.getMonth() + 1] //--get the month
	var fyear =dateObj.getFullYear();  //--get the year
	if (fyear < 1950 )  //--compensate for non y2k browsers
 		 fyear = fyear + 100;
 	var date = dateObj.getDate(); //-- get day of month
	document.write("This page last modified:" + " " + lmonth + " " + date + ", " + fyear);
//--close out the cell, row and table
	document.write("</td></tr>")
	document.write("</table>")


