function jumpToEvent() {this.goToURL = goToURL;this.theForm = document.forms['pickEvent'];this.theSelect = this.theForm['eventSelect'];this.theSelect.style.display = 'inline';var fakeThis = this;this._goToURL = function (e) {fakeThis.goToURL(e);};if(typeof this.theSelect.addEventListener != "undefined") this.theSelect.addEventListener("change", this._goToURL, false);else if (typeof this.theSelect.attachEvent != "undefined") this.theSelect.attachEvent("onchange", this._goToURL);else this.theSelect.onchange = this._goToURL;}function goToURL() {if(this.theSelect.selectedIndex !== 0) window.location = this.theSelect.options[this.theSelect.selectedIndex].value;}
