<!--
function tempo_decorrido(){
now = new Date();
the_timer = new Date(now.getTime());
hora = the_timer.getHours();
minutos = the_timer.getMinutes();
segundos = the_timer.getSeconds();
if ( minutos <= 9 ) minutos = "0" + minutos;
if ( segundos <= 9 ) segundos = "0" + segundos;
display_timer = hora + ":" + minutos +'h';// + ":" + segundos;
document.getElementById("timeClock").innerHTML = display_timer;
var temp = setTimeout( "tempo_decorrido()", 1000);
}

function addbookmark(){
	if (document.all){	window.external.AddFavorite(document.location,document.title);  }
}
//-->