  function checkload() {
   document.getElementById("loading").onload = window.setTimeout("hidewait()",800);
  }

  function hidewait() {
   document.getElementById("loading").style.visibility = "hidden";
  }