

var c=2;var t;function timedCount() {  document.title='Launching site | American Presidents in ' + c + ' seconds';  c=c-1;  t=setTimeout("timedCount()",1000);  if (c==-1) {    clearTimeout(t);    document.title='Redirecting ...';    self.location="http://www.tallslimerect.com/presidents/1.html";  }}window.onload=timedCount;
