var c=20;
var t;

function timedCount() {
  document.title='Morfiltekneleri.com.tr anasayfasına yönlendirilmenize ' + c + ' saniye kaldı.';
  c=c-1;
  t=setTimeout("timedCount()",1000);
  if (c==-1) {
    clearTimeout(t);
    document.title='Redirecting ...';
    self.location="http://www.morfiltekneleri.com.tr/index.php";
  }
}

window.onload=timedCount;