		// This script is intended for use with a minimum of Netscape 4 or IE 4.
		// First we detect the browser type
		if(document.getElementById) { // IE 5 and up, NS 6 and up
			var upLevel = true;
			}
		else if(document.layers) { // Netscape 4
			var ns4 = true;
			}
		else if(document.all) { // IE 4
			var ie4 = true;
			}
		if(upLevel) {
			//alert();
			var splash = document.getElementById("splashScreen");
			//alert(splash);
			}
		else if(ns4) {
			var splash = document.splashScreen;
			}
		else if(ie4) {
			var splash = document.all.splashScreen;
			}
			
		function showObject(obj) {//alert(obj);
			if (ns4) {
				obj.display = "";
				}
			else if (ie4 || upLevel) {
				obj.style.display = "";
				}
			}

showObject(splash);
