<!-- // begin hide
function showItemDetail(itemId) {
    popupWin = window.open(
        "bookDetail.php?id=" + itemId,
        "ItemDetail",
        "toolbar=0,location=0,directories=0,menubar=0," +
        "status=1,resizable=0,scrollbars=1," +
        "width=435,height=480");
    popupWin.focus();
}

function showItemDetail2(itemId) {
    popupWin = window.open(
        "resources/bookDetail.php?id=" + itemId,
        "ItemDetail",
        "toolbar=0,location=0,directories=0,menubar=0," +
        "status=1,resizable=0,scrollbars=1," +
        "width=435,height=480");
    popupWin.focus();
}

function showABCDetail(storeId) {
    popupWin = window.open(
        "abcDetail.php?storeId=" + storeId,
        "ItemDetail",
        "toolbar=0,location=0,directories=0,menubar=0," +
        "status=1,resizable=0,scrollbars=1," +
        "width=435,height=400");
    popupWin.focus();
}

//
// open a popup window and bring the window to the top
//
function openWin(destURL, windowTitle, winWidth, winHeight, resizeable) {
    popupWin = window.open(
        destURL,
        windowTitle,
        "toolbar=0,location=0,directories=0,menubar=0," +
        "status=1,resizable=" + resizeable + ",scrollbars=1," +
        "width=" + winWidth + ",height= " + winHeight);
    popupWin.focus();
}

// end hide -->
