function loadSweden() {
    if (GBrowserIsCompatible()) {
        if (!document.getElementById('MapSweden')) return false;
        var map = new GMap2(document.getElementById('MapSweden'));
        map.enableContinuousZoom();
        map.enableDoubleClickZoom();
        map.addControl(new GLargeMapControl());
        map.addControl(new GMapTypeControl());
        var geocoder = new GClientGeocoder();

        var icon = new GIcon();
        var markerStyle = 'Google Traditional (pillow)';
        var markerColor = 'Pacifica';
        icon.image = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica.png';
        icon.shadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.png';
        icon.iconSize = new GSize(34, 35);
        icon.shadowSize = new GSize(34, 35);
        icon.iconAnchor = new GPoint(9, 23);
        icon.infoWindowAnchor = new GPoint(19, 0);
        icon.printImage = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica.gif';
        icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica_mozprint.png';
        icon.printShadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.gif';
        icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica_transparent.png';

        var address_0 = {
            street: 'Skeppargatan 13, 3 tr',
            city: 'Stockholm',
            zip: '114 46',
            country: 'Sweden',
            infowindow: 'custom',
            infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />Skeppargatan 13, 3 tr<br />Stockholm  114 46<br/>Sweden<br/>08-230033</span>',
            full: 'Skeppargatan 13, 3 tr, Stockholm 114 46, Sweden',
            isdefault: true
        };

        geocoder.getLatLng(
      address_0.full,
      function(point) {
          if (point) {
              map.setCenter(point, 13);
              var marker = new GMarker(point, icon);
              GEvent.addListener(marker, 'click', function() {
                  marker.openInfoWindowHtml(address_0.infowindowtext);
              });
              map.addOverlay(marker);
              marker.openInfoWindowHtml(address_0.infowindowtext);
          }
          else {
              map.setCenter(new GLatLng(37.4419, -122.1419), 13);
          }
      }
    );

    }
}

function loadIndia() {
    if (GBrowserIsCompatible()) {
        if (!document.getElementById('MapChennai')) return false;
        var map = new GMap2(document.getElementById('MapChennai'));
        map.enableContinuousZoom();
        map.enableDoubleClickZoom();
        map.addControl(new GLargeMapControl());
        map.addControl(new GMapTypeControl());
        var geocoder = new GClientGeocoder();

        var icon = new GIcon();
        var markerStyle = 'Google Traditional (pillow)';
        var markerColor = 'Pacifica';
        icon.image = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica.png';
        icon.shadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.png';
        icon.iconSize = new GSize(34, 35);
        icon.shadowSize = new GSize(34, 35);
        icon.iconAnchor = new GPoint(9, 23);
        icon.infoWindowAnchor = new GPoint(19, 0);
        icon.printImage = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica.gif';
        icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica_mozprint.png';
        icon.printShadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.gif';
        icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica_transparent.png';

        var address_0 = {
            street: 'Nelson Manikkam Road',
            city: 'Chennai',
            zip: '600029',
            country: 'India',
            infowindow: 'custom',
            infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />Office No.3, 3rd Floor,<br />No. 76, Priyan Plaza,<br/>Nelson Manikkam Road,<br/>Chennai-600029, INDIA</span>',
            full: 'HCL Cisco, Nelson Manickam Road, Aminjikarai, Chennai, Chennai, Tamil Nadu, India',
            isdefault: true
        };

        geocoder.getLatLng(
      address_0.full,
      function(point) {
          if (point) {
              map.setCenter(point, 13);
              var marker = new GMarker(point, icon);
              GEvent.addListener(marker, 'click', function() {
                  marker.openInfoWindowHtml(address_0.infowindowtext);
              });
              map.addOverlay(marker);
              marker.openInfoWindowHtml(address_0.infowindowtext);
          }
          else {
              map.setCenter(new GLatLng(37.4419, -122.1419), 13);
          }
      }
    );

    }
}
