function TeaserRouter() {
    var hotelid = document.getElementById("destination").value;
    if (hotelid === "none") {
        alert("Please Select A Hotel");
        return false;
    } else {
        if (isNaN(parseInt(hotelid, 10))) {
            var warning_window = window.open("./teaser_redirect.html", "warning_window");
            setTimeout(function (e) {
                warning_window.location = hotelid;
				warning_window.focus();
                var event = e || window.event;
                if (event.stopPropagation) {
                    event.stopPropagation();
                } else {
                    event.cancelBubble = true;
                }
                return false;
            }, 15000);
            return false;
        } else {
            var myformaction = "https://www.reservations-page.com/c00295/h0" + hotelid + "/be.ashx";
            document.getElementById("teaserForm").setAttribute("action", myformaction);
            return true;
        }
    }
}
