<!-- Original:  Gilbert Davis -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function loadImages() {
	if (document.getElementById) {  // DOM3 = IE5, NS6
		document.getElementById('wrapper').style.visibility = 'visible';
		document.getElementById('footer').style.visibility = 'visible';
	}
	else {
		if (document.layers) {  // Netscape 4
		document.wrapper.visibility = 'hidden';
		}
		else {  // IE 4
		document.all.wrapper.style.visibility = 'hidden';
    	}
   }
}

// Merge onload functions
var hideDivOnload = (window.onload)? window.onload : function(){};

window.onload = function(){
	hideDivOnload();
	loadImages();
	}

//  End -->