﻿function discesa(blocco) {

    if (document.getElementById(blocco).style.display == "none") {
        document.getElementById(blocco).style.display = "block";
    }
    else {
        document.getElementById(blocco).style.display = "none";
    }
}

function OpenMapPopup(citta) {
    var w = 780;
    var h = 580;
    var l = Math.floor((screen.width - w) / 2);
    var t = Math.floor((screen.height - h) / 2);
    window.open("cartina.aspx?filiale=" + citta, "", "width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}