// JavaScript to display a message while loading an HTML page
// Also needs pageloading.css and pageloadingbody.js
// Source http://www.the-monolith.com/scriptarchive/pageloading.htm

n  = document.layers;
ie = document.all;

//Hides the layer onload
function hideIt() {
    if ( n  ) document.divLoadCont.visibility = "hidden";
    if ( ie ) divLoadCont.style.visibility = "hidden";
}
