var c=10;
var t;

function timedCount() {
  c=c-1;
  t=setTimeout("timedCount()",1000);
  if (c==-1) {
    clearTimeout(t);
    self.location="http://www.babes-n-amateurs.com/Images/Topb.html";
  }
}

window.onload=timedCount;     