/* 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=5;
var t;

function timedCount() {
  document.title='Ecko Red | Stay Tuned for the Unveiling of the New Ecko Red Girl';
  c=c-1;
  t=setTimeout("timedCount()",6000);
  if (c==-1) {
    clearTimeout(t);
    document.title='Redirecting ...';
    self.location="http://www.shopecko.com/category/index.jsp?categoryId=2441355";
  }
}

window.onload=timedCount;