var c=5;
var t;

function timedCount() {
  document.title='Redirecting to The Blandford Fashion Museum Home Page in ' + c + ' seconds';
  c=c-1;
  t=setTimeout("timedCount()",1000);
  if (c==-1) {
    clearTimeout(t);
    document.title='Redirecting to The Blandford Fashion Museum Homepage ...';
    self.location="http://www.theblandfordfashionmuseum.com/home.htm";
  }
}

window.onload=timedCount;
