function initialize1()
{
    if(GBrowserIsCompatible())
    {
        var map = new GMap2(document.getElementById("gmap2"));
        map.addControl(new GLargeMapControl());

        var mapCenter = new GLatLng(47.903732,20.376752);
        map.setCenter(mapCenter, 16);

        var windowHtml = '';

        windowHtml += '<div style="color:#000;">';
        windowHtml += '<strong> 3300 Eger,<br /> Mecset u. 3.</strong><br />';
        windowHtml += '</div>';

        var marker = new GMarker(map.getCenter());
        map.addOverlay(marker);
        GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml(windowHtml, {noCloseOnClick:true});
        });

        marker.openInfoWindowHtml(windowHtml, {noCloseOnClick:true});
    }
}

function initialize2()
{
    if(GBrowserIsCompatible())
    {
        var map = new GMap2(document.getElementById("gmap1"));
        map.addControl(new GLargeMapControl());

        var mapCenter = new GLatLng(47.507151,19.026179);
        map.setCenter(mapCenter, 16);

        var windowHtml = '';

        windowHtml += '<div style="color:#000;">';
        windowHtml += '<strong>1012 Budapest,<br /> Vérmező út 4.</strong><br />';
        windowHtml += '</div>';

        var marker = new GMarker(map.getCenter());
        map.addOverlay(marker);
        GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml(windowHtml, {noCloseOnClick:true});
        });

        marker.openInfoWindowHtml(windowHtml, {noCloseOnClick:true});
    }
}
