<!--
/* footer.js used by k0emt web pages

   show url for this page?
   add back button?
*/
     var cText = '';

     datMod = new Date();

     datMod.setTime(Date.parse(document.lastModified));

     cText += '<div align=left>'
     cText += '<hr width=95%>'

	// left cell - base url
     cText += '<table width=95% cols=2 border=0><tr>'
     cText += '<td align=left><font size=-1>'
     cText += '<a href=\"http://www.dbbear.com/k0emt/\" target=\"k0emt_home\">http://www.dbbear.com/k0emt/</a>'

	// this pages url
     sURL = new String(location.pathname);
     cText += sURL.substr(7);
     cText += '</font></td>'

	// right cell - last modified
     cText += '<td align=right><font size=-1>'
     cText += "Updated: " + 
                 (datMod.getYear() < 2000  ? (1900 + datMod.getYear()) : 
		                           		datMod.getYear()) +
		  "." +
                 (datMod.getMonth() < 9 ? "0" +( 1 + datMod.getMonth()) :
		                           1 + datMod.getMonth() ) +
		  "." +
                 (datMod.getDate() < 10 ? "0" + datMod.getDate() :
                                          datMod.getDate() ) + 
		 "<br>"

     cText += '</font></td></tr>'
     cText += '</table></div>'

     document.write(cText);

     
-->