// JavaScript Document
function NewWindow(url, name, width, height) {
    var Win = window.open(url,"" + name + "",'width=0' + width + ',height=0' + height + ',resizable=no,scrollbars=no,menubar=no,status=no' );
    Win.focus();
}

function toggle_map(item) {
    var legend = document.getElementById('legend');
    var txt = document.getElementById('toggle').innerHTML;
    if (item.style.width == "auto") {
        item.style.width = "445px";
        item.style.cursor = "-moz-zoom-in";
        legend.style.display = "block";
        document.getElementById('toggle').innerHTML = txt.replace(/Normal/, "Expanded");

    } else {
        item.style.width = "auto";
        item.style.cursor = "-moz-zoom-out";
        legend.style.display = "none";
        document.getElementById('toggle').innerHTML = txt.replace(/Expanded/, "Normal");
    }
}