//<![CDATA[

function Map(){

    Shadowbox.open({
        player:     'html',
        content:    '',
        height:     550,
        width:      720,
        options:    {
            onFinish: function(item){
                if(GBrowserIsCompatible()){
                    var map = new GMap2(document.getElementById('shadowbox_content'));
					var geocoder = new GClientGeocoder();
					var address = "Rynek 16, Żywiec, PL";
					geocoder.getLatLng(address,function(point) {
					if (!point) {
						alert(address + " nie zostal odnaleziony");
					} else {
						map.setCenter(point, 15);
						var marker = new GMarker(point);
						map.addOverlay(marker);
						marker.openInfoWindowHtml('<img src="/images/se_logo_gm.gif" alt="SportEvents Biuro Turystyki i Sportu" /><div style="font-size: 11px;margin-left:10px;height:100px">ul. Rynek 16<br/>34-300 Żywiec<br/>Tel. (+48) 33 475 65 60, (+48) 33 475 65 61<br/>Tel/Fax: (+48) 33 475 65 63<br/>kom. (+48) 691 95 44 67</div>');
						map.addControl(new GLargeMapControl());
					}
					}
					);               

                
                }
            }
        }
    });

};

//]]>