//Map related js functions...
function createMarker(point, content, type) {
  var marker = new GMarker(point, {draggable:false});
  if (content)
  {
	//alert(content);
	  GEvent.addListener(marker, 'click', function() {
		marker.openInfoWindowHtml(content);
	  });
  }
  GEvent.addListener(marker, 'drag', function() {
	lastmarker=marker;
  });
  return marker;
}
