﻿
function showMap(companyID, geoaddress) {

    canv = document.getElementById("map_canvas" + companyID);
    if ((canv.style.display == 'none')) {
        canv.style.display = 'inline';
    } else {
        canv.style.display = 'none';
    }
}
function showLocations(id) {



    var trs = document.getElementById("resultBody").getElementsByTagName("tr");
    var showRow = false;
    for (i = 0; i < trs.length; i++) {
        if (showRow) {
            trs[i].style.display = '';
        }
        if (trs[i].id == id + "Start") {
            showRow = true;
            i++;
            trs[i].style.display = 'none';
        }

        if (trs[i].id == id + "Stop") {
            showRow = false;
        }

    }
    var acsSp = document.getElementById("ACS" + id);

    if (acsSp) {
        acsSp.style.display = 'inline';
        document.getElementById("ACSHide" + id).style.display = 'none';
    }

}        

