var countDownInterval=2600;
var c_reloadwidth=200
var countDownTime=countDownInterval+1;
function countDown(){
countDownTime--;
if (countDownTime <=0){
countDownTime=countDownInterval;
clearTimeout(counter)
window.location.reload()
return
}
if (document.all) //if IE 4+
document.all.countdown.innerText = countDownTime+" ";
else if (document.getElementById) //else if NS6+
document.getElementById("countdown").innerHTML=countDownTime+" "
else if (document.layers){ 
document.c_reload.document.c_reload2.document.write('Next automatic reload in <strong id="countdown">'+countDownTime+' </strong> seconds.')
document.c_reload.document.c_reload2.document.close()
}
counter=setTimeout("countDown()", 1000);
}

function startit(){
if (document.all||document.getElementById) 
document.write('Next automatic reload in <strong id="countdown">'+countDownTime+' </strong> seconds.')
countDown()
}

if (document.all||document.getElementById)
startit()
else
window.onload=startit


