//<!-- THREE STEPS TO INSTALL PRELOAD PAGE:

//  1.  Copy the coding into the HEAD of your HTML document
//  2.  Add the onLoad event handler into the BODY tag
//			<BODY OnLoad="loadProgress()">
//  3.  Put the last coding into the BODY of your HTML document  -->
//			<div id="hidepage" style="position: absolute; left:5px; top:5px; 
//			background-color: #FFFFCC; layer-background-color: #FFFFCC; height: 100%; width: 100%;"> 
//<!-- Begin

function loadProgress() {
if (document.getElementById) {  // DOM3 = IE5, NS6
document.getElementById('hidepage').style.visibility = 'hidden';
}
else {
if (document.layers) {  // Netscape 4
document.hidepage.visibility = 'hidden';
}
else {  // IE 4
document.all.hidepage.style.visibility = 'hidden';
      }
   }
}
//  End -->
