var c=10;
var t;

function timedCount() {
  document.title='Erols Gold | Pırlanta Mücevherat ' + c + ' sn';
  c=c-1;
  t=setTimeout("timedCount()",1000);
  if (c==-1) {
    clearTimeout(t);
    document.title='Redirecting ...';
    self.location="http://www.erolsgold.com/erols/";
  }
}

window.onload=timedCount;
