<!--

// CSwait and CSwaitMore time the disappearance of the rollover layer.
// As long as the mouse is over an item that calls CSwaitMore the layer will remain visible.

// When the mouse moves off that item the script waits 1.5 sec
// and then makes the layer vanish by calling CShideLayer.

var TimerID = setTimeout("CShideLayer()", 1500);

function CSwait() {
	clearTimeout(TimerID);
	TimerID = setTimeout("CShideLayer()", 1500);
}

function CSwaitMore() {
	clearTimeout(TimerID);
}

function CShideLayer() {
	if (document.layers) {
		document.appLayer.visibility = "hidden";
	}
	else
	if (document.all) {
		document.all.appLayer.style.visibility = "hidden";
	}
	else
	if (document.getElementById) {
		document.getElementById("appLayer").style.visibility = "hidden";
	}	
}

// In Netscape 4.x, identified by document.layers, this function makes the 'location' layer visible with a onMouseOver event.

// In Netscape 6 or IE, this function activates the .display method to redraw this section of the page.
function CSshowLayer() {
	if (document.layers) {
		document.appLayer.visibility = "show";
	}
	else
	if (document.all) {
		document.all.appLayer.style.visibility = "visible";
	}
	if (document.getElementById) {
		document.getElementById("appLayer").style.visibility = "visible";
	}
}

//-->