function gen_fbk(a,n) {
    return '<input type="hidden" name="'+n+'" value="'+a+'">';
}


/* google maps code start*/
var map = null;
var geocoder = null;

function showAddressFromPoint(p_point_y, p_point_x) {
    if (geocoder) {
        var point = new GPoint(p_point_x, p_point_y);
        var marker = new GMarker(point);
        map.addOverlay(marker);
        var letter = '<b>Hárskút</b><br /><br />GPS: É 47.18182°, K 17.81098°';
        marker.openInfoWindowHtml(letter);
        GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml(letter);
        });
    }
}

function initialize() {
    if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(47.00, 19.70), 7);
        geocoder = new GClientGeocoder();
        map.setUIToDefault();
    }
}
/* google maps code end*/
