// JavaScript Document
<!-- Paste this code into an external JavaScript file named: reDirect.js  -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Jon Brown :: http://allthingsrunescape.freewebs.com */

var c=10;
var t;

function timedCount() {
  document.title='Autokanada.pl | Strona w przygotowaniu  ' + c + ' ...';
  c=c-1;
  t=setTimeout("timedCount()",1000);
  if (c==-1) {
    clearTimeout(t);
    document.title='Strona w przygotowaniu ...';
    self.location="http://www.autokanada.pl/index_pl.php";
  }
}

//window.onload=timedCount;




