        // 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;
			}
			
			
			this.SimpleFrame = document.getElementById("Simpleframe");
			//LoadUrlSimple("BusyWindow2.htm");
			
			

		function showObject(obj) {
			if (ns4) {
				obj.visibility = "show";
				}
			else if (ie4 || upLevel) {
				obj.style.visibility = "visible";
				}
			}
		function hideObject(obj) {
			if (ns4) {
				obj.visibility = "hide";
				}
			if (ie4 || upLevel) {
				obj.style.visibility = "hidden";
				}
			}

function HideObj()
{
if(upLevel) {
	var splash = document.getElementById("splashScreen");
	}
else if(ns4) {
	var splash = document.splashScreen;
	}
else if(ie4) {
	var splash = document.all.splashScreen;
	}
hideObject(splash);
}

function LoadUrlLoadUrlSimple(url)
{
	// Get a reference to the document object in the SimpleFrame
	var SimpleFrameDoc = this.GetSimpleFrameDocument();
	
	// Load the url using the replace method.  This will prevent the browsers 
	// history object from being updated with the new busybox url; thus allowing 
	// the back button to function as desired for the user.
	SimpleFrameDoc.location.replace(url);
}

function GetSimpleFrameDocument()
{
	var doc;
	
	if( this.SimpleFrame.contentDocument )
		// For NS6
		doc = this.SimpleFrame.contentDocument; 
	else if( this.SimpleFrame.contentWindow ) 
		// For IE5.5 and IE6
		doc = this.SimpleFrame.contentWindow.document;
	else if( this.SimpleFrame.document )
		// For IE5
		doc = this.SimpleFrame.document;
	else
// TODO: Confirm this should be the default
		doc = this.SimpleFrame.document;
	
	return doc;
}
