function showPage() {
  document.getElementById('t').style.display = 'none';
}

setTimeout('showPage()', 10000);

