http://www.reconn.us
If you have a page that takes long time to display it is a good idea to display a “wait until the page loads” image. This tutorial show you how to implement this in your webpage.
To implement this you will need to:
1. Every time your page loads a “init()” function will load.
2. Define a div named “loading” right after section.

The loading.gif image should be an animated gif that suggests that the page is still loading.
3. Place this javascript code right after you define the div.
var ld=(document.all);
var ns4=document.layers;
var ns6=document.getElementById&&!document.all;
var ie4=document.all;
if (ns4)
ld=document.loading;
else if (ns6)
ld=document.getElementById(“loading”).style;
else if (ie4)
ld=document.all.loading.style;
function init()
{
if(ns4){ld.visibility=”hidden”;}
else if (ns6||ie4) ld.display=”none”;
}