var count = 10000;
var redirect = "https://www.pcentus.com";
function countDown(){
var timer = document.getElementById("timer");
if(count > 0){
count--;
timer.innerHTML = "Sera redirido a www.pcentus.com en "+count+" seconds.";
setTimeout("countDown()", 1000);
}else{
window.location.href = redirect;
}
}
Our webpage has beed moved. Please update your bookmarks for the new site.
?>