

// DATE HANDLER
var time = new Date(document.lastModified);
var zyr = time.getYear();
//The following two kluge lines solve Y2K problems
zyr=zyr-2000;
if(navigator.appName=="Netscape"){zyr=zyr+1900};//Netscape counts from 1900

if (zyr >0 && zyr < 10){zyr = "0"+zyr} //convert year to two-digit string
if (zyr == 0){zyr="00"}
var zmo = time.getMonth();
zmo = zmo+1 //JS counts months from 0
if (zmo < 10){zmo = "0"+zmo} //convert month to two-digit string
var zda = time.getDate();
if (zda <10) {zda = "0"+zda} // convert day to two-digit string
var zdate = zyr+""+zmo+""+zda

// FOOTNOTE HANDLER
var ffnn = 0;
var footnote = new Array(18) //number must at least equal number of footnotes



function showfn(ffnn){
var fnwindow=window.open("","fnwindow","scrollbars=yes, location=no, copyhistory=no");

fnwindow.document.writeln("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2/EN\">");
fnwindow.document.writeln("<html><head><title>Further Note</title>");
fnwindow.document.writeln("<meta http-equiv='Content-Type' content='text/html; charset=ISO-UTF-8'>");
fnwindow.document.writeln('<link rel="stylesheet" href="tale.css" type="text/css">');

fnwindow.document.writeln("</head><body bgcolor=\"yellow\" onclick=\"self.close\">");
fnwindow.document.writeln("<p><center><form>");
fnwindow.document.writeln("<input type='button' value='Close This Window' onclick='window.close()'></center></form><p>");
fnwindow.document.writeln("<p><h3>Editorial Note"+": </h3><blockquote>");
fnwindow.document.write(footnote[ffnn]);
fnwindow.document.writeln("</blockquote>");
fnwindow.document.writeln("<center><form>");
fnwindow.document.write("<input type='button' value='Close This Window' onclick='window.close()'>&nbsp;&nbsp;");
fnwindow.document.write("<input type='button' name='btnPrint' ");
fnwindow.document.write("value=\"Print This Window\" onclick=\"window.print();\">\n<p>\n");
fnwindow.document.writeln("</center></form>\n");


fnwindow.document.writeln("<p></body></html>");
fnwindow.document.close()
} // end of function showfn()

//<script type="text/javascript" src="minmax.js"></script>


