function initialize1()
{
    if(GBrowserIsCompatible())
    {
        var map = new GMap2(document.getElementById("google_map1"));
        map.addControl(new GLargeMapControl());

        var mapCenter = new GLatLng(46.076579876295526, 18.23530912399292);
        map.setCenter(mapCenter, 16);

        var windowHtml = '';

        windowHtml += '<div>';
        windowHtml += '<strong>Queen-Site Pécs</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("google_map2"));
        map.addControl(new GLargeMapControl());

        var mapCenter = new GLatLng(47.465063, 19.052915);
        map.setCenter(mapCenter, 16);

        var windowHtml = '';

        windowHtml += '<div>';
        windowHtml += '<strong>Queen-Site Budapest</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});*/
    }
}