//<![CDATA[

function gload(lat,long,address,title){
if(mapload(lat,long,address,title)){ 
  //if so, then make the thickbox call:
   // opens the map_window div into thickbox
    tb_show(title + ' - street map',
  '#TB_inline?height=320&width=500&inlineId=thickcontent',true);
}
}

function mapload(lat,long,address,title) {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById('map'),
	{size: new GSize(500,300)});  //this is where the height and width are set.
	map.setCenter(new GLatLng(lat,long), 14);
	var oIcon = new GIcon(G_DEFAULT_ICON);
	oIcon.image = '../images/o-marker.png';
	var markerOptions = { icon:oIcon };
	var marker = new GMarker(new GLatLng(lat,long), markerOptions);
	map.addOverlay(marker);
	var html='<strong>' + title + '<\/strong><br\/>' +
	 address + '<br\/>' +
	 'Enquiries ph: (403) 668-7568<br\/>';
	marker.openInfoWindowHtml(html);
	marker.bindInfoWindowHtml(html);
	map.addControl(new GSmallZoomControl());
	return true;
  }
}

//]]>
