﻿function showProduct(imgDir) 
{
    var dPath = window.location.pathname;
    var dLink = window.location.protocol + "//" + window.location.hostname + "/";
    showProductWindow(dLink, imgDir);
}

function showProductWindow(link, imgDir) 
{
    var slink = link + 'Store/ShowProduct.aspx?imgDir=' + imgDir;
    var win = window.open(slink, 'ShowProduct', 'width=1000,height=368,scrollbars=0,location=0,menubar=0,statusbar=0,toolbar=0,resizable=0,modal=no');
}

function showCVC() {
    var sPage = "../ShowCVC.aspx";
    var win = window.open(sPage, 'ShowCVC', 'width=600,height=279,scrollbars=0,location=0,menubar=0,statusbar=0,toolbar=0,resizable=0,modal=no');
}

