var c=0;
var t;

function timedCount() {
  document.title='Türk Dişhekimleri Birliği ' + c + ' saniye';
  c=c-1;
  t=setTimeout("timedCount()",600);
  if (c==-1) {
    clearTimeout(t);
    document.title='.';
    self.location="http://www.tdb.org.tr/tdb/v2/anasayfa.php";
  }
}

window.onload=timedCount;