﻿// JScript File

function gridSelect(type, name)
{
    window.location = "../productDetail.aspx?Type=" + type + "&Name=" + name;
}

//function gridSelectMusic(type)
//{
//    switch(type)
//    {
//        case "Backs":
//            window.location = "../musicalInstruments_species.aspx?Section=Backs%20%26%20Sides";
//            break;
//        case "Tops":
//            window.location = "../musicalInstruments_species.aspx?Section=Tops";
//            break;
//        case "Necks":
//            window.location = "../musicalInstruments_productdetails.aspx";
//            break;
//        case "Hardware":
//            window.location = "../musicalInstruments_hardware.aspx";
//            break;
//    }
//}



function gridSelectMusic(type, name)
{
    switch(type)
    {
        case 1:
            window.location = "../musicalInstruments_productdetails.aspx?Section=" + name;
            break;
            
        case 2:
            window.location = "../musicalInstruments_species.aspx?Section=" + name;
            break;
                       
        case 3:
            window.location = "../pricelisthardware.aspx?Section=" + name;
            break;
        
        case 4:
            window.location = "../musicalInstruments_productguitardetails.aspx?Section=" + name;
            break;
            
        default:
            window.location = "../musicalInstruments_productguitardetails.aspx?Show=All&Section=" + name;
            break;
        
    }
            
}
