var content = "Most human affairs happen without leaving vestiges or records of any kind behind them. The past, having happened, has perished with only occasional traces. To begin with, although the absolute number of historical writings is staggering, only a small part of what happened in the past was ever observed. And only a part of what was observed in the past was remembered by those who observed it; only a part of what was remembered was recorded; only a part of what was recorded has survived; only a part of what survived has come to the historians' attention; only a part of what has come to their attention is credible; only a part of what is credible has been grasped; and only a part of what has been grasped can be expounded or narrated by the historian.<br><p align=right> - Louis Gottschalk, Understanding History (1969) ";

function twDisplayTW() {twDisplay('tw',content,0);}
loaded('tw',twDisplayTW);

var brk = '~'; // character to use for line break
var resetTime = 0; // set to 0 to not reset or seconds to delay before reset

// Typewriter Text Javascript
// copyright 13th October, 2007 by Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the code in this script (including these
// comments) is used without any alteration
// you can change the values above this notice to suit your requirements
function twDisplay(id,content,num) {var delay = 1; if (num <= content.length)  {var lt = content.substr(0,num); document.getElementById(id).innerHTML = lt.replace(RegExp(brk,'g'),'<br \/>'); num++; if (num > content.length) delay = resetTime * 1000;} else {document.getElementById(id).innerHTML = ''; num = 0;} if (delay > 0) setTimeout('twDisplay("'+id+'","'+content+'","'+num+'")',delay);} var pageLoaded = 0; window.onload = function() {pageLoaded = 1;}; function loaded(i,f) {if (document.getElementById && document.getElementById(i) != null) f(); else if (!pageLoaded) setTimeout('loaded(\''+i+'\','+f+')',100);}

