<!--  to hide script contents from old browsers

// hidepage.js by Orjan Hansson, 2006-03-22
// JavaScript source file

// The following function was modified from the example
// "Page Details: Preload Page" at http://javascript.internet.com

// Original:  Gilbert Davis

// This script and many more are available free online at
// The JavaScript Source!! http://javascript.internet.com

function loadImages()
{
  if (document.getElementById) // DOM3 = IE5, NS6
  {
//    document.getElementById('hidepage').style.visibility = 'hidden'; // Doesn't work in Safari?
    document.getElementById('hidepage').style.display = 'none'; // Inserted by OH 2006-03-25
  }
  else
  {
    if (document.layers) // Netscape 4
    {
      document.hidepage.visibility = 'hidden';
    }
    else // IE 4
    {
      document.all.hidepage.style.visibility = 'hidden';
    }
  }
}

// end hiding contents from old browsers  -->
