

// 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="jinshan.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>

function topjunk1() {
var topjunk1="<a name=\"top\"></a> <table border=0 width=99%> <tr valign=top><td align=left><font size=-1> Go to <a href=\"../../index.html\"  target=\"_top\">main page of site</a>,  <a href=\"../../chin/china.html\"  target=\"_top\">Chinese resources page</a> <!--<br>Go to <a href=\"../../an173/an173.html#week8\"  target=\"_top\">class web site</a> ---></font> <td align=right> ";
document.write(topjunk1);
document.write("<font size=-1>Text Created 050708<br><font color=maroon>Last Modified: "+zdate+"</font><br></font>") // </script>

} // end of function topjunk1

function topjunk2() {
var topjunk2="</table>  <img src=\"forpicts/roof.gif\" width=100% align=center class=roof> ";
document.write(topjunk2);
} // end of function topjunk2

