var   directionsDisplay = new google.maps.DirectionsRenderer();

function mapaStart()
         {
            var text1 = '<div class="dymek"><h4>Connect PPHU<br />ul.Ogińskiego 2a<br />58-506 Jelenia Góra</h4></div>';

            var kraj1 = 'Poland';
     		var mapa1;
            var wspolrzedne1 = new google.maps.LatLng(50.90863201662402,15.74752539396286);
            var opcjeMapy1 = {
                            zoom: 15,
                            center: wspolrzedne1,
                            mapTypeId: google.maps.MapTypeId.ROADMAP ,
                            mapTypeControl: false,
                            backgroundColor: '#f3f3ea',
                            navigationControlOptions:
                            {
                            position: google.maps.ControlPosition.TOP_RIGHT,
                            style: google.maps.NavigationControlStyle.SMALL // w stylu ANDROID
                            }
                            };
                            
  var image = new google.maps.MarkerImage('images/connect.png',
      // This marker is 20 pixels wide by 32 pixels tall.
      new google.maps.Size(74, 32),
      // The origin for this image is 0,0.
      new google.maps.Point(0,0),
      // The anchor for this image is the base of the flagpole at 0,32.
      new google.maps.Point(74, 32));
 var shadow = new google.maps.MarkerImage('images/shadow-connect.png',
      new google.maps.Size(91, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(74, 32));



 	
             mapa1= new google.maps.Map(document.getElementById("mapka1"), opcjeMapy1);
             directionsDisplay.setMap(mapa1);

             var dymek1 = new google.maps.InfoWindow( {
              content: text1,
              position: wspolrzedne1
          });
          /*dymek1.open(mapa1);*/

                    var marker1 = new google.maps.Marker({
              map: mapa1,
              position: wspolrzedne1,
              title:"Connect PPHU, ul.Ogińskiego 2a, 58-506 Jelenia Góra",
              icon: image,
              shadow: shadow


              });
              
              
              /**/
              
            var text2 = '<div class="dymek"><h4>Connect PPHU<br />ul.Krótka 17<br />58-500 Jelenia Góra</h4></div>';

            var kraj2 = 'Poland';
     		var mapa2;
            var wspolrzedne2 = new google.maps.LatLng(50.90215189261842,15.734016448259354);
            var opcjeMapy2 = {
                            zoom: 15,
                            center: wspolrzedne2,
                            mapTypeId: google.maps.MapTypeId.ROADMAP ,
                            mapTypeControl: false,
                            backgroundColor: '#fff',
                            navigationControlOptions:
                            {
                            position: google.maps.ControlPosition.TOP_RIGHT,
                            style: google.maps.NavigationControlStyle.SMALL // w stylu ANDROID
                            }
                            };

             mapa2= new google.maps.Map(document.getElementById("mapka2"), opcjeMapy2);
             directionsDisplay.setMap(mapa2);


             var dymek2 = new google.maps.InfoWindow( {
              content: text2,
              position: wspolrzedne2
          });
          /*dymek2.open(mapa2);*/

                    var marker2 = new google.maps.Marker({
              map: mapa2,
              position: wspolrzedne2,
              title:"Connect PPHU, ul.Krótka 17, 58-500 Jelenia Góra",
              icon: image,
              shadow: shadow

              });
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
}




function cleanUp()
{
if (mapa) {GUnload();}
}

