var c=5;
var t;

function timedCount() {
  document.title='HOSTsa Internet - Web Hosting - Alan Adı (Domain Name) Kayıt - Reseller Bayilik  |  ' + c + ' ';
  c=c-1;
  t=setTimeout("timedCount()",1000);
  if (c==-1) {
    clearTimeout(t);
    document.title='Hoşgeldiniz ... Ana Sayfaya Yönleniyorsunuz ...';
    self.location="http://www.hostsa.net/index2.php";
  }
}

window.onload=timedCount;

