﻿function ShowDetails(type) {
    
    var pnlDetailsId
    if (type == "0"){
        pnlDetailsId = document.getElementById("pnlDetailsCom");
    }
    else if (type == "1") {
        pnlDetailsId = document.getElementById("pnlDetailsProd");
    }
    else if (type == "2") {
        pnlDetailsId = document.getElementById("pnlDetailsDis");
    }
    else if (type == "3") {
        pnlDetailsId = document.getElementById("pnlDetailsServ");
    }
    else if (type == "4") {
        pnlDetailsId = document.getElementById("pnlDetailsBank");
    }
    else if (type == "5") {
        pnlDetailsId = document.getElementById("pnlDetailsIT");
    }
    else if (type == "6") {
        pnlDetailsId = document.getElementById("pnlDetailsMR");
    }
    else if (type == "7") {
        pnlDetailsId = document.getElementById("pnlDetailsIns");
    }
    
    if (pnlDetailsId.style.display == 'none') {
        pnlDetailsId.style.display = 'block';
    }
    else {
        pnlDetailsId.style.display = 'none';
    }

    return false;
}
