var MCHMap = {
  map: null,
  infoWindow: null
};
/**
* Called when clicking anywhere on the map and closes the info window.
*/
MCHMap.closeInfoWindow = function () {
    MCHMap.infoWindow.close();
};
 
/**
* Opens the shared info window, anchors it to the specified marker, and
* displays the marker's position as its content.
*/
 
var contentInfoString = '';


MCHMap.openInfoWindow = function (marker) {
    MCHMap.infoWindow.setContent([contentInfoString].join(''));
    MCHMap.infoWindow.open(MCHMap.map, marker);
},

/**
* Called only once on initial page load to initialize the map.
*/
MCHMap.init = function () {
    // Create single instance of a Google Map.
    var centerLatLng = new google.maps.LatLng(-36.809285, 146.239014);
    MCHMap.map = new google.maps.Map(document.getElementById('map-canvas'), {
        zoom: 8,
        center: centerLatLng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    });


    // Create a single instance of the InfoWindow object which will be shared
    // by all Map objects to display information to the user.
    MCHMap.infoWindow = new google.maps.InfoWindow();

    // Make the info window close when clicking anywhere on the map.
    google.maps.event.addListener(MCHMap.map, 'click', MCHMap.closeInfoWindow);

    
    //Register Markers
    var marker1 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.184937,145.71167),title: "Alexandra"});
google.maps.event.addListener(marker1, 'click', function () {contentInfoString = '<b>Alexandra</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=1">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=1">View Events</a>';MCHMap.openInfoWindow(marker1);});
var marker2 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.565807,145.198746),title: "Arthurs Creek"});
google.maps.event.addListener(marker2, 'click', function () {contentInfoString = '<b>Arthurs Creek</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=2">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=2">View Events</a>';MCHMap.openInfoWindow(marker2);});
var marker3 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.346656,146.688766),title: "Beechworth"});
google.maps.event.addListener(marker3, 'click', function () {contentInfoString = '<b>Beechworth</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=3">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=3">View Events</a>';MCHMap.openInfoWindow(marker3);});
var marker4 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.551293,145.981693),title: "Benalla"});
google.maps.event.addListener(marker4, 'click', function () {contentInfoString = '<b>Benalla</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=4">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=4">View Events</a>';MCHMap.openInfoWindow(marker4);});
var marker5 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.730114,146.960893),title: "Bright"});
google.maps.event.addListener(marker5, 'click', function () {contentInfoString = '<b>Bright</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=5">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=5">View Events</a>';MCHMap.openInfoWindow(marker5);});
var marker6 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.208798,145.059443),title: "Broadford/Sunday Creek"});
google.maps.event.addListener(marker6, 'click', function () {contentInfoString = '<b>Broadford/Sunday Creek</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=6">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=6">View Events</a>';MCHMap.openInfoWindow(marker6);});
var marker7 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.421435,145.708923),title: "Buxton"});
google.maps.event.addListener(marker7, 'click', function () {contentInfoString = '<b>Buxton</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=7">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=7">View Events</a>';MCHMap.openInfoWindow(marker7);});
var marker8 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.524056,145.433192),title: "Castella"});
google.maps.event.addListener(marker8, 'click', function () {contentInfoString = '<b>Castella</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=8">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=8">View Events</a>';MCHMap.openInfoWindow(marker8);});
var marker9 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.633266,145.499325),title: "Chum Creek"});
google.maps.event.addListener(marker9, 'click', function () {contentInfoString = '<b>Chum Creek</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=9">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=9">View Events</a>';MCHMap.openInfoWindow(marker9);});
var marker10 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.333894,145.093517),title: "Clonbinane/Waterford Park"});
google.maps.event.addListener(marker10, 'click', function () {contentInfoString = '<b>Clonbinane/Waterford Park</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=10">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=10">View Events</a>';MCHMap.openInfoWindow(marker10);});
var marker11 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-35.919623,145.649228),title: "Cobram"});
google.maps.event.addListener(marker11, 'click', function () {contentInfoString = '<b>Cobram</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=11">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=11">View Events</a>';MCHMap.openInfoWindow(marker11);});
var marker12 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.195997,147.903995),title: "Corryong"});
google.maps.event.addListener(marker12, 'click', function () {contentInfoString = '<b>Corryong</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=12">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=12">View Events</a>';MCHMap.openInfoWindow(marker12);});
var marker13 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.599901,145.418408),title: "Dixon Creek"});
google.maps.event.addListener(marker13, 'click', function () {contentInfoString = '<b>Dixon Creek</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=13">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=13">View Events</a>';MCHMap.openInfoWindow(marker13);});
var marker14 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.234275,145.908394),title: "Eildon"});
google.maps.event.addListener(marker14, 'click', function () {contentInfoString = '<b>Eildon</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=14">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=14">View Events</a>';MCHMap.openInfoWindow(marker14);});
var marker15 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.645891,145.040324),title: "Epping"});
google.maps.event.addListener(marker15, 'click', function () {contentInfoString = '<b>Epping</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=15">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=15">View Events</a>';MCHMap.openInfoWindow(marker15);});
var marker16 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.750851,145.570682),title: "Euroa"});
google.maps.event.addListener(marker16, 'click', function () {contentInfoString = '<b>Euroa</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=16">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=16">View Events</a>';MCHMap.openInfoWindow(marker16);});
var marker17 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.317206,145.292645),title: "Flowerdale/Hazeldene/Strath Creek/Tyaak"});
google.maps.event.addListener(marker17, 'click', function () {contentInfoString = '<b>Flowerdale/Hazeldene/Strath Creek/Tyaak</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=17">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=17">View Events</a>';MCHMap.openInfoWindow(marker17);});
var marker18 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.383322,145.399997),title: "Greater Shepparton"});
google.maps.event.addListener(marker18, 'click', function () {contentInfoString = '<b>Greater Shepparton</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=18">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=18">View Events</a>';MCHMap.openInfoWindow(marker18);});
var marker19 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.653791,145.517006),title: "Healesville"});
google.maps.event.addListener(marker19, 'click', function () {contentInfoString = '<b>Healesville</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=19">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=19">View Events</a>';MCHMap.openInfoWindow(marker19);});
var marker20 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.91732,144.703739),title: "Heathcote"});
google.maps.event.addListener(marker20, 'click', function () {contentInfoString = '<b>Heathcote</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=20">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=20">View Events</a>';MCHMap.openInfoWindow(marker20);});
var marker21 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.372383,145.031472),title: "Heathcote Junction"});
google.maps.event.addListener(marker21, 'click', function () {contentInfoString = '<b>Heathcote Junction</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=21">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=21">View Events</a>';MCHMap.openInfoWindow(marker21);});
var marker22 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.638988,145.19329),title: "Hurstbridge"});
google.maps.event.addListener(marker22, 'click', function () {contentInfoString = '<b>Hurstbridge</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=22">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=22">View Events</a>';MCHMap.openInfoWindow(marker22);});
var marker23 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.29285,144.951264),title: "Kilmore"});
google.maps.event.addListener(marker23, 'click', function () {contentInfoString = '<b>Kilmore</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=23">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=23">View Events</a>';MCHMap.openInfoWindow(marker23);});
var marker25 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.562337,145.319252),title: "Kinglake Ranges"});
google.maps.event.addListener(marker25, 'click', function () {contentInfoString = '<b>Kinglake Ranges</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=25">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=25">View Events</a>';MCHMap.openInfoWindow(marker25);});
var marker26 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.313465,145.047727),title: "Kyabram"});
google.maps.event.addListener(marker26, 'click', function () {contentInfoString = '<b>Kyabram</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=26">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=26">View Events</a>';MCHMap.openInfoWindow(marker26);});
var marker27 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.757534,145.350258),title: "Lilydale"});
google.maps.event.addListener(marker27, 'click', function () {contentInfoString = '<b>Lilydale</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=27">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=27">View Events</a>';MCHMap.openInfoWindow(marker27);});
var marker28 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.053156,146.086493),title: "Mansfield"});
google.maps.event.addListener(marker28, 'click', function () {contentInfoString = '<b>Mansfield</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=28">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=28">View Events</a>';MCHMap.openInfoWindow(marker28);});
var marker29 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.510305,145.747375),title: "Marysville"});
google.maps.event.addListener(marker29, 'click', function () {contentInfoString = '<b>Marysville</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=29">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=29">View Events</a>';MCHMap.openInfoWindow(marker29);});
var marker30 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.733106,147.166586),title: "Mount Beauty"});
google.maps.event.addListener(marker30, 'click', function () {contentInfoString = '<b>Mount Beauty</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=30">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=30">View Events</a>';MCHMap.openInfoWindow(marker30);});
var marker31 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.561635,146.726103),title: "Myrtleford"});
google.maps.event.addListener(marker31, 'click', function () {contentInfoString = '<b>Myrtleford</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=31">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=31">View Events</a>';MCHMap.openInfoWindow(marker31);});
var marker32 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.784267,145.1548),title: "Nagambie"});
google.maps.event.addListener(marker32, 'click', function () {contentInfoString = '<b>Nagambie</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=32">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=32">View Events</a>';MCHMap.openInfoWindow(marker32);});
var marker33 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.563732,145.65661),title: "Narbethong"});
google.maps.event.addListener(marker33, 'click', function () {contentInfoString = '<b>Narbethong</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=33">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=33">View Events</a>';MCHMap.openInfoWindow(marker33);});
var marker34 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.056316,145.20381),title: "Nathalia"});
google.maps.event.addListener(marker34, 'click', function () {contentInfoString = '<b>Nathalia</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=34">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=34">View Events</a>';MCHMap.openInfoWindow(marker34);});
var marker35 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.091349,145.44229),title: "Numurkah"});
google.maps.event.addListener(marker35, 'click', function () {contentInfoString = '<b>Numurkah</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=35">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=35">View Events</a>';MCHMap.openInfoWindow(marker35);});
var marker36 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.260127,145.12683),title: "Reedy Creek"});
google.maps.event.addListener(marker36, 'click', function () {contentInfoString = '<b>Reedy Creek</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=36">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=36">View Events</a>';MCHMap.openInfoWindow(marker36);});
var marker37 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.054963,146.461487),title: "Rutherglen"});
google.maps.event.addListener(marker37, 'click', function () {contentInfoString = '<b>Rutherglen</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=37">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=37">View Events</a>';MCHMap.openInfoWindow(marker37);});
var marker38 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.024484,145.137033),title: "Seymour"});
google.maps.event.addListener(marker38, 'click', function () {contentInfoString = '<b>Seymour</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=38">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=38">View Events</a>';MCHMap.openInfoWindow(marker38);});
var marker39 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.602927,145.269299),title: "St Andrews"});
google.maps.event.addListener(marker39, 'click', function () {contentInfoString = '<b>St Andrews</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=39">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=39">View Events</a>';MCHMap.openInfoWindow(marker39);});
var marker40 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.615591,145.371094),title: "Steels Creek"});
google.maps.event.addListener(marker40, 'click', function () {contentInfoString = '<b>Steels Creek</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=40">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=40">View Events</a>';MCHMap.openInfoWindow(marker40);});
var marker41 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.548014,145.267196),title: "Strathewen"});
google.maps.event.addListener(marker41, 'click', function () {contentInfoString = '<b>Strathewen</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=41">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=41">View Events</a>';MCHMap.openInfoWindow(marker41);});
var marker42 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.320823,145.71373),title: "Taggerty"});
google.maps.event.addListener(marker42, 'click', function () {contentInfoString = '<b>Taggerty</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=42">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=42">View Events</a>';MCHMap.openInfoWindow(marker42);});
var marker43 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.216614,147.17813),title: "Tallangatta"});
google.maps.event.addListener(marker43, 'click', function () {contentInfoString = '<b>Tallangatta</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=43">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=43">View Events</a>';MCHMap.openInfoWindow(marker43);});
var marker44 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.094211,145.100899),title: "Tallarook"});
google.maps.event.addListener(marker44, 'click', function () {contentInfoString = '<b>Tallarook</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=44">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=44">View Events</a>';MCHMap.openInfoWindow(marker44);});
var marker45 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.254619,145.796556),title: "Thornton"});
google.maps.event.addListener(marker45, 'click', function () {contentInfoString = '<b>Thornton</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=45">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=45">View Events</a>';MCHMap.openInfoWindow(marker45);});
var marker46 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.535321,145.471344),title: "Toolangi"});
google.maps.event.addListener(marker46, 'click', function () {contentInfoString = '<b>Toolangi</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=46">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=46">View Events</a>';MCHMap.openInfoWindow(marker46);});
var marker47 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.423923,145.05661),title: "Upper Plenty"});
google.maps.event.addListener(marker47, 'click', function () {contentInfoString = '<b>Upper Plenty</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=47">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=47">View Events</a>';MCHMap.openInfoWindow(marker47);});
var marker48 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.636503,145.715704),title: "Violet Town"});
google.maps.event.addListener(marker48, 'click', function () {contentInfoString = '<b>Violet Town</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=48">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=48">View Events</a>';MCHMap.openInfoWindow(marker48);});
var marker49 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.414073,144.979148),title: "Wallan"});
google.maps.event.addListener(marker49, 'click', function () {contentInfoString = '<b>Wallan</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=49">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=49">View Events</a>';MCHMap.openInfoWindow(marker49);});
var marker50 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.355968,145.026398),title: "Wandong"});
google.maps.event.addListener(marker50, 'click', function () {contentInfoString = '<b>Wandong</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=50">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=50">View Events</a>';MCHMap.openInfoWindow(marker50);});
var marker51 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.35426,146.32566),title: "Wangaratta"});
google.maps.event.addListener(marker51, 'click', function () {contentInfoString = '<b>Wangaratta</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=51">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=51">View Events</a>';MCHMap.openInfoWindow(marker51);});
var marker52 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.511973,145.117893),title: "Whittlesea/Humevale"});
google.maps.event.addListener(marker52, 'click', function () {contentInfoString = '<b>Whittlesea/Humevale</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=52">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=52">View Events</a>';MCHMap.openInfoWindow(marker52);});
var marker53 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.122416,146.88798),title: "Wodonga"});
google.maps.event.addListener(marker53, 'click', function () {contentInfoString = '<b>Wodonga</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=53">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=53">View Events</a>';MCHMap.openInfoWindow(marker53);});
var marker54 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.657189,145.374699),title: "Yarra Glen"});
google.maps.event.addListener(marker54, 'click', function () {contentInfoString = '<b>Yarra Glen</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=54">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=54">View Events</a>';MCHMap.openInfoWindow(marker54);});
var marker55 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-36.018108,146.003022),title: "Yarrawonga"});
google.maps.event.addListener(marker55, 'click', function () {contentInfoString = '<b>Yarrawonga</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=55">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=55">View Events</a>';MCHMap.openInfoWindow(marker55);});
var marker56 = new google.maps.Marker({map: MCHMap.map,position: new google.maps.LatLng(-37.212011,145.424137),title: "Yea/Murrindindi/Glenburn"});
google.maps.event.addListener(marker56, 'click', function () {contentInfoString = '<b>Yea/Murrindindi/Glenburn</b><br/><br/><img src="Images/hand-share.png" alt="View Services" /> <a href="service.aspx?loc=56">View Services</a><br/><img src="Images/calendar-select.png" alt="View Calendar" /> <a href="EventCalendar.aspx?loc=56">View Events</a>';MCHMap.openInfoWindow(marker56);});


}
