/* 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=3;
var t;

function timedCount() {
  document.title='NorthCyprusLynx | Redirecting in ' + c + ' seconds';
  c=c-1;
  t=setTimeout("timedCount()",100);
  if (c==-1) {
    clearTimeout(t);
    document.title='Redirecting ...';
    self.location="http://www.lynxcyprus.com/";
  }
}

window.onload=timedCount;
