﻿// JScript File

function toggleMap(flag) {
    if (flag) {
        //$("div#mapa").fadeOut();
        $("div#mapa").fadeIn("slow");
        document.getElementById("mapa").style.visibility = "visible";
        
    }else{
        $("div#mapa").fadeOut("slow");
        //document.getElementById("mapa").style.visibility = "hidden";
    }
}

function showGalleryPhoto(id) {
    //document.getElementById(id).style.visibility = "visible";
    $("#" + id).fadeIn("slow");
}

