function hideIt() {
  document.getElementById("special").style.visibility = "hidden";
}
setTimeout("hideIt()", 2000);
