function initialize() {
	
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("sb-wrapper-inner"));
		map.setCenter(new GLatLng(49.649751, 13.907919), 15);
		map.addControl(new GSmallMapControl());
		map.enableScrollWheelZoom();
		map.addOverlay(new GMarker(new GLatLng(49.649751, 13.907919)));
	}
}

function demoMap() { //show_point, show_point2

/*	if (show_point) {
		
		if (show_point2) {
		
			show_point=show_point+','+show_point2;  
		}

		var show_points=show_point.split(",");
	} */
    //console.debug(show_point);
    

    Shadowbox.open({
        player:     'html',
        content:    '',
        height:     700,
        width:      900,title:      '',options:    {
			onFinish: function(item) {
				//alert("ok");
				initialize();
			},
			enableKeys:false
     }
    });
};


