

function load() {
//~Check to see if object exists
    if (document.getElementById("map"))
    {

//--------------Start - Section 1: Javascript for Google map 
       var map = "";
       function createMarker(point,html,icons) 
       {var emarker = new GMarker(point,icons);
        GEvent.addListener(emarker, "click", function() {
          emarker.openInfoWindowHtml(html);
        });return emarker;} 

//Create the map
     map = new GMap2(document.getElementById("map"));
//Map navigation control
    map.addControl(new GLargeMapControl());

//Type of map control
     map.addControl(new GMapTypeControl());
//Set the map centre using latitude and longitude co-ordinates and set the opening zoom level of the map. 
//The smaller the number, the smaller the scale. For example, replacing 14 with 1 will display the whole world.
     map.setCenter(new GLatLng(18.53918712101889,73.89882802963257), 17);
//---------------End - Section 1: Javascript for Google map 

// --------------Start - Section 2: Available markers------------------
	  var point = new GLatLng(18.539512627214105,73.89859199523926);
      var marker = createMarker(point,'<div style="width:240px">KOREGAON PARK S.No. 31/IA, 31/IB, Shop No.1,Building H, Liberty Co-operative Society, Koregaon Park , Pune 411001 Phone 91-20-26156236 <a href="http://www.punemate.com">PuneMate<\/a> <\/div>')
      map.addOverlay(marker);

//__________________________________________________________________
var point = new GLatLng(18.54250318635832,73.88449430465698);

var iconBlue = new GIcon(); 
iconBlue.image = 'http://heyiamonline.com/mm_20_blue.png';

iconBlue.iconSize = new GSize(24, 40);
iconBlue.shadowSize = new GSize(44, 40);
iconBlue.iconAnchor = new GPoint(6, 20);
iconBlue.infoWindowAnchor = new GPoint(5, 1);


var options = { 
title: "Bund Garden Birds",
icon: iconBlue,
draggable: true,
bouncy: false
};

var marker1 = new GMarker(point, options);




map.addOverlay(marker1);

GEvent.addListener(marker1, "click", function() {
        marker1.openInfoWindowHtml('<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/DAUur4Nkr7E&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/DAUur4Nkr7E&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>');
      });
      map.addOverlay(marker1);
//_______________________________________________________
var point = new GLatLng(18.53918712101889,73.89882802963257);

var iconBlue = new GIcon(); 
iconBlue.image = 'http://heyiamonline.com/PM/Icons/gmarkrred.png';

iconBlue.iconSize = new GSize(24, 40);
iconBlue.shadowSize = new GSize(44, 40);
iconBlue.iconAnchor = new GPoint(6, 20);
iconBlue.infoWindowAnchor = new GPoint(5, 1);


var options = { 
title: "Bund Garden Birds",
icon: iconBlue,
draggable: true,
bouncy: false
};

var marker2 = new GMarker(point, options);




map.addOverlay(marker2);

GEvent.addListener(marker2, "click", function() {
        marker2.openInfoWindowHtml('<div style="width:240px">KOREGAON PARK S.No. 31/IA, 31/IB, Shop No.1,Building H, Liberty Co-operative Society, Koregaon Park , Pune 411001 Phone 91-20-26156236 <a href="http://www.punemate.com">PuneMate<\/a> <\/div>');
      });
      map.addOverlay(marker2);

//__________________________________________________________


	



  }

}
    
window.onload = load; 




