/*@cc_on _d=document;eval('var document=_d')@*/

/**
 * サブウィンドウ用変数
 *
 * @property {object}
 */
var new_window = null;

/**
 * ボタンイメージファイル定義
 *
 * @property {array} imageFile
 */
var imageFile = {
    'searchden_on': '../img/reserve/bt-list-den-001_o.gif',
    'searchden_off': '../img/reserve/bt-list-den-001.gif',
    'searchgyu_on': '../img/reserve/bt-list-gyuden-001_o.gif',
    'searchgyu_off': '../img/reserve/bt-list-gyuden-001.gif',
    'searchsyabu_on': '../img/reserve/bt-list-syabuden-001_o.gif',
    'searchsyabu_off': '../img/reserve/bt-list-syabuden-001.gif'
};

/**
 * ボタン押下時の動作
 *
 * @param {object}
 *            target
 * @param {string}
 *            status
 */
function changeImage(target, status) {
    target.src = imageFile[target.id + '_' + status];
}

/**
 * 検索
 */
function searchTenpo(gp) {
    if (gp == "でん") {
        document.getElementById("tenpo_group").value = "1";
    } else if (gp == "牛でん") {
        document.getElementById("tenpo_group").value = "2";
    } else if (gp == "しゃぶしゃぶでん") {
        document.getElementById("tenpo_group").value = "3";
    }
    document.getElementById("prefecture").selectedIndex = 0;
    document.tenpolist_form.action = "../php/tenpo_list.php";
    document.tenpolist_form.target = "_self";
    document.tenpolist_form.submit();
}

/**
 * 検索
 */
function searchTenpoPrefecture() {
    document.tenpolist_form.action = "../php/tenpo_list.php";
    document.tenpolist_form.target = "_self";
    document.tenpolist_form.submit();
}


/**
 * 予約画面表示
 */
function reserve(tenpoNo, groupNo) {
    document.getElementById("tenpo_no").value = tenpoNo;
    document.getElementById("tenpo_group").value = groupNo;
    document.getElementById("post_pattern").value = "init";
    document.tenpolist_form.action = "https://dng.jp/pc/web/php/reserve.php";
    document.tenpolist_form.target = "_self";
    document.tenpolist_form.submit();
}

/**
 * 地図表示
 */
function mapOpen(tenpoNo) {
    document.getElementById("tenpo_no").value = tenpoNo;
    var new_window = window.open("about:blank", "tenpoMap", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=620,height=620");
    new_window.focus();
    document.tenpolist_form.action = "../php/tenpo_map.php";
    document.tenpolist_form.target = "tenpoMap";
    document.tenpolist_form.submit();
}
