function jumpToResort() {this.goToURL = goToURL;this.theForm = document.forms['jumpToRegion'];this.theSelect = this.theForm['atopResort'];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() {window.location = this.theSelect.options[this.theSelect.selectedIndex].value;}
