      <!-- //

        button_off = new Image();
        button_off.src = "images/wichita_button_off.gif";
        button_on = new Image();
        button_on.src = "images/wichita_button_on.gif";

        function windowPopup(windowURL,windowTitle,windowWidth,windowHeight)
          {
          gen = window.open(windowURL,windowTitle,'toolbars=0,scrollbars=1,location=0,top=160,left=250,statusbars=0,menubars=0,resizable=0,width=' + windowWidth + ',height=' + windowHeight);
          }

        function swapper(imgName,imgObjName)		
          {
          if (document.images)
            {
            document.images[imgName].src = eval(imgObjName + ".src");
            }
          }

        function openWindow(pagename, scrollo, winname)
          {
          if ((navigator.appName=="Netscape") && (navigator.appVersion.substring(0,1)<5))
            {
            var windowHeight = screen.availWidth - 10;
            var windowWidth = screen.availHeight - 30;
            window.open(pagename, winname, "width=" + windowHeight + ",height=" + windowWidth + ",top=0,left=0,scrollbars=" + scrollo + "");
            }
          else
            {
            var windowHeight = screen.availWidth - 10;
            var windowWidth = screen.availHeight - 30;
            window.open(pagename, winname, "width=" + windowHeight + ",height=" + windowWidth + ",top=0,left=0,scrollbars=" + scrollo + "");
            }
          }

      // -->