﻿// サムネイル画面のオープン
function openThumbnail(url) {
    window.open(url, "thumbnail", 
        "width=560, height=700, toolbar=0, location=0, menubar=0, scrollbars=1,resizable=1");
}

// 表紙イメージ画面のオープン
function openCoverImage(url) {
    window.open(url, "cover_image",
        "width=460, height=520, toolbar=0, location=0, menubar=0, scrollbars=1,resizable=1");
}

// 注文詳細画面のオープン
function openOrderHistoryDetail(url) {
    window.open(url, "thumbnail",
        "width=500, height=740, toolbar=0, location=0, menubar=0, scrollbars=1,resizable=1");
}

// 配送方法についてのオープン
function openDelivery(url) {
    window.open(url, "usage",
        "width=500, height=740, toolbar=0, location=0, menubar=0, scrollbars=1,resizable=1");
}

// 支払い方法についてのオープン
function openPayment(url) {
    window.open(url, "usage",
        "width=500, height=740, toolbar=0, location=0, menubar=0, scrollbars=1,resizable=1");
}
