function reloj2() {
  var obj = document.getElementById("flotante");
  obj.style.visibility = "visible";
  setTimeout("reloj()", 9000);
}

function reloj() {
  var obj = document.getElementById("flotante");
  obj.style.visibility = "hidden";
}

var id = setTimeout("reloj2()", 2000);

