﻿// JScript File
/* General Functions */
function createMarker(point, html) {
  var marker = new GMarker(point);
  GEvent.addListener(marker, "click", function() {
      marker.openInfoWindowHtml(html);
  });
  //GEvent.addListener(marker, "click", s());
  return marker;
}

function initMap(mapID){
  if (GBrowserIsCompatible()) { 
    // Display the map, with some controls and set the initial location 
    var map = new GMap2(document.getElementById(mapID));
      //alert(map.constructor);
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    map.setCenter(new GLatLng(1.474264,103.755360),14);
    //map.setMapType(G_HYBRID_MAP);
    map.enableScrollWheelZoom();
    
    var point = new GLatLng(1.474264, 103.755360);
    var info;
    info = '<table cellpading="0" cellspacing="0" class="infoText" style="width:350px"><tr><td valign="top"><img src="images/rsfg-shop-s.jpg" /></td> \
        <td style="width:10px"></td><td style="vertical-align:top" align="left"><span style="font-size: 8pt; font-weight: bold; font-family: Arial">Rahim Simon Fashion Gallery (R.S.F.G)</span><br /> \
        L1-02, Level One, Danga City Mall<br />Jln Tun Abdul Razak,<br />81100 Johor Bahru, Johor, Malaysia. \
        <br /><br /><span style="font-size: 8pt; font-weight: bold; font-family: Arial">Sales & Marketing (Rahim Simon):</span> <br /> \
        Mobile : +6012 2028201  <br /> \
        Email: <a href="mailto:aimeicho07@hotmail.com">aimecho07@hotmail.com</a> \
        </td></tr></table>'
    var marker = createMarker(point,info)
    map.addOverlay(marker);
    GEvent.trigger(marker, "click");
    }    
    // display a warning if the browser was not compatible
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }
  }


