﻿// JScript 檔

$(document).ready(function(){
    $("[name='CompareBtn']").click(function(){
        var str="";
        $("[name='list']:checked").each(function(){
            str = str + $(this).val() + ";";
        })
        if (str.length > 0)
        {
            //window.location.href="Products.aspx?&&ProdCode=" + str;
            window.open("Products.aspx?&&ProdCode=" + str, "_blank");
        }
    })
    
    $("[name='NotSelectedBtn']").click(function(){
        $("[name='list']").removeAttr("checked");
    })
})
