﻿var c = 1;
var t;

function tiempoContado() {
    document.title = 'SOBRINO.NET | Redirecting in ' + c + ' seconds';
    c = c - 1;
    t = setTimeout("tiempoContado()", 1000);
    if (c == -1) {
        clearTimeout(t);
        document.title = 'Redirecting ...';
        self.location = "http://www.sobrino.net";
    }
}

window.onload = tiempoContado;