﻿$(function() {
    $("#divInsList").find("a").not("a#moreins").click(Insdetail);
    function Insdetail() {
        window.open("../Foreground/instrument/instrumentdetail.aspx?id=" + $(this).attr("id"));
    }
    
    $("#divManuList").find("a").not("a#moremanu").click(Manudetail);
    function Manudetail() {
        window.location.href="../Foreground/Exhibition/Manufacturer.aspx?type=manu&id=" + $(this).attr("id");
    }

    $("#divsNd").find("a").not("a#moresNd").click(sNddetail);
    function sNddetail() {
        window.location.href="../Foreground/Exhibition/Manufacturer.aspx?type=sNd&id=" + $(this).attr("id");
    }
})