<!--

NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
ver4 = (NS4 || IE4) ? 1 : 0;

function moveLayers() {
	if (gotlayers) {
		if (NS4) {
			screenWidth = window.innerWidth;
			document.layers['booksKick'].left = 140;
			document.layers['booksKick'].top = 215;
			document.layers['apoloKick'].left = 140;
			document.layers['apoloKick'].top = 80;
		} else {
			screenWidth = document.body.clientWidth + 18;
			document.all['booksKick'].style.pixelLeft = 100;
			document.all['booksKick'].style.pixelTop = 161;
			document.all['apoloKick'].style.pixelLeft = 100;
			document.all['apoloKick'].style.pixelTop = 188;
		}
	}
}

function popUp(menuName,on) {
	if (gotlayers) {
		if (on) {
			moveLayers();
			if (NS4) {
				document.layers[menuName].visibility = "show";
			} else {
				document.all[menuName].style.visibility = "visible";
			}
		} else {
			if (NS4) {
				document.layers[menuName].visibility = "hide";
			} else {
				document.all[menuName].style.visibility = "hidden";
			}
		}
	}
}

// -->
