
function ablakUrl( url, width, height){
    map = window.open(url,'galeria','toolbar=no,location=no,directories=no,menubar=no,resizable=no,status=no,top=20,left=20,width='+width+',height='+height+'');
    map.focus();
}

function ekezetetAtkodol(kodolando, eredmeny){
        adat = kodolando.value;
        if(adat != null){
            eredmeny.value = adat.replace(/ö/g, "o").replace(/ü/g, "u").replace(/ó/g, "o").replace(/õ/g, "o")
                    .replace(/ú/g, "u").replace(/é/g, "e").replace(/á/g, "a").replace(/û/g, "u").replace(/í/g, "i")
                    .replace(/Ö/g, "o").replace(/Ü/g, "u").replace(/Ó/g, "o").replace(/Õ/g, "o").replace(/Ú/g, "u")
                    .replace(/É/g, "e").replace(/Á/g, "a").replace(/Û/g, "u").replace(/Í/g, "i").replace(/ /g, "_")
                    .replace(/[^a-zA-Z0-9]/g, "_");
            eredmeny.value = eredmeny.value.replace(/_+/g, "_");
        }
}

function MenuNyitogato(){
var menuAllapotTomb = new Array();
    function menuNyitogato(id){
        if(menuAllapotTomb[id] != 1){
            document.getElementById('menu_' + id).style.display = 'inline';
            document.getElementById('menu_nyitojel_' + id).innerText = '-';
            menuAllapotTomb[id] = 1;
        } else {
            document.getElementById('menu_' + id).style.display = 'none';
            document.getElementById('menu_nyitojel_' + id).innerText = '+';
            menuAllapotTomb[id] = 0;
        }
    }
}

