function popup() {


var adresse="popup_pic.htm";

k_info = window.open(adresse,"", "toolbar=no,menubar=no,location=no,statusbar=no,scrollbars=no,resizable=no,width=470,height=640,left=300,top=20");
}


 function PopupPic(sPicURL) {
       window.open( "popup.htm?"+sPicURL, "PopupPic",
     "resizable=1,HEIGHT=20,WIDTH=20, toolbar=no, top=20, left=75, menubar=0, location=no, statusbar=no");

   }
   
    function PopupPic1(sPicURL) {
     window.open( "popup.htm?"+sPicURL, "PopupPic",
     "resizable=1,HEIGHT=200,WIDTH=200, toolbar=no, menubar=0, location=no, statusbar=no");
   }
   
   
    
function createMarker(point) {
 var baseIcon = new GIcon();
          baseIcon.iconSize=new GSize(32,32);
          baseIcon.shadowSize=new GSize(56,32);
          baseIcon.iconAnchor=new GPoint(16,32);
          baseIcon.infoWindowAnchor=new GPoint(16,0);

      var martini = new GIcon(baseIcon, "http://maps.google.com/mapfiles/kml/pal2/icon10.png", null, "http://maps.google.com/mapfiles/kml/pal3/icon10s.png");


  var marker = new GMarker(point,martini);
  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml("<span style='font-family:verdana;font-size:10px'><b>Pawelke Keramik und Kachelofen Design</b> <br> Schwendener Str. 1, Marktoberdorf-Leuterschach</span>");
  });
  return marker;
}


    function load() {
      if (GBrowserIsCompatible()) {

 var baseIcon = new GIcon();
          baseIcon.iconSize=new GSize(32,32);
          baseIcon.shadowSize=new GSize(56,32);
          baseIcon.iconAnchor=new GPoint(16,32);
          baseIcon.infoWindowAnchor=new GPoint(16,0);

      var martini = new GIcon(baseIcon, "http://maps.google.com/mapfiles/kml/pal2/icon10.jng", null, "http://maps.google.com/mapfiles/kml/pal2/icon10s.jng");

        var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
      var point = new GLatLng(47.748086,10.5728023);

          map.setCenter(point, 9);


var marker = new GMarker(new GLatLng(47.748086,10.5728023),martini);
map.addOverlay(marker);
map.addOverlay(createMarker(new GLatLng(47.748086,10.5728023,martini)));
      marker.openInfoWindowHtml("<span style='font-family:verdana;font-size:10px'><b>Pawelke Keramik und Kachelofen Design</b> <br> Schwendener Str. 1, Marktoberdorf-Leuterschach</span>");
      }
    }







