	idvisible	= 0;
	idtohide	= 0;

	function show(id)
	{
		if (idvisible != id) {
			idtohide = idvisible;
			clear();

			obj = eval( "document.all.div" + id + ";" );

			idvisible = id;

			x = parseInt(obj.style.myx);

			if (x < 0) {
				x = ((screen.width - 770)/2) - x;
			} else {
				x = document.all.PAGE.offsetLeft + x;
			}

			y = parseInt(obj.style.myy);

			obj.style.left = x + "px";
			obj.style.top = y + "px";
			obj.style.visibility = "visible";
		} else {
			idtohide = 0;
		}
	}

	function sustain(id)
	{
		if (idtohide == id) idtohide = "";
	}

	function clear()
	{
		if (idtohide) {
			obj = eval( "document.all.div" + idtohide + ";" );
			obj.style.visibility = "hidden";

			idtohide = 0;
			idvisible = 0;
		}
	}
	
	function hide(id)
	{
		if (idvisible) {
			idtohide = idvisible;
			setTimeout( "clear()", "100" );
		}
	}

	objb	= 0;
	objbc	= "";
				
	function press() {
		objb = event.toElement;

		objbc = objb.className;

		objb.className = objbc + "HOVER";
	}

	function depress() {
		if (objb != 0) {
			objb.className = objbc;
			objb = 0;
		}
	}

	function SetImage(ImageID, ImageSrc) {
		if (document.images) { document[ImageID].src = ImageSrc; }
	}

	function _Link(url) {
		if (url != "") {
			if ( url.indexOf( "http://" ) > -1 ) {
				popWin = window.open( url );
				popWin.focus();
			} else {
				location.href = url;
			}
		}
	}
