var ftn01 = "<p>&#160;&#160;Making the two synonymous has in fact been the goal of at least two centuries of a kind of social \
engineering that has attempted to capture and control the fundamental activity for particular state purposes&#8211;including \
the unimpeachable purposes of building a democratic polity, making the tools of high culture available to all people, \
equalizing chances, etc.  This development has been globally successful and it is not surprising that schools should \
now appear the paradigmatic educational institution, or that researchers of education should focus most of their \
efforts on schooling and its specific problematics.  </p>"


function WriteFootnote (ftn)
{
document.write("<html><body><div>");
document.write (ftn);
document.write("</div>this is it</body></html>");
return true;
}

/*
document.writeln ("<div id='footnote'>");
WriteFootnote(ftn01); 
document.writeln ("<h6 align='right'><A HREF=\"javascript:toggleLayer('footnote');\">Close this window&nbsp;&nbsp;</A></h6>");
document.writeln ("</div>");
document.writeln ("");
document.writeln ("");
*/

/* This toggles a layer invisible/visible */
function toggleLayer(whichLayer)
{
if (document.getElementById)
{
	// this is the way the standards work
	var style2 = document.getElementById(whichLayer).style;

	style2.display = style2.display? "":"block";
}
else if (document.all)
{
// this is the way old msie versions work
	var style2 = document.all[whichLayer].style;
	style2.display = style2.display? "":"block";
}
else if (document.layers)
{
	// this is the way nn4 works
	var style2 = document.layers[whichLayer].style;
	style2.display = style2.display? "":"block";
}

WriteFootnote(ftn01)
}