pff,, les juro que estuve horas buscando la solución, y como no la encontraba pregunté acá, pero a los 5 minutos pillo la solución:
Código:
<script type="text/javascript">
<!-- begin
var start=new Date();
start=Date.parse(start)/1000;
var counts=<!--{$tiempo}-->;
function CountDown(){
var now=new Date();
now=Date.parse(now)/1000;
var x=parseInt(counts-(now-start),10);
if(document.getElementById('formu')){document.getElementById('formu').timer.value = x;}
if(x>0){
timerID=setTimeout("CountDown()", 100)
}else{
location.href="<!--{$jurl}-->"
}
}
// End -->
</script>
<script type="text/javascript">
<!--
window.setTimeout('CountDown()',100);
-->
</script>
<div class="bloque"><!--{$mensaje}-->
<form id="formu" action="#">
<p>Será redirigido automáticamente en <!--{$tiempo}--> segundos: <input type="text" name="timer" size="2" /></p>
</form>
<p>si su navegador no redirige automáticamente, <a href="<!--{$url}-->">haga click acá</a> </p>
</div>
espero que le sirva a alguien.