// JavaScript Document

// resort and rooms tour pop-up handler
var tour_win = null;
function popTour(url) {
        tour_win = window.open(url, 'tourWin', 'width=840,height=675,toolbar=no,scrollbars=yes,scrolling=yes,statusbar=no,resizable=no');
        if (window.focus) tour_win.focus();
}
