/**
 * @author jontj1
 */
var map;
var geocoder;
var propertyPostcode;
var propertyLatLong;
var mintIcon = new GIcon(G_DEFAULT_ICON);
mintIcon.image = "http://www.mintlocation.com/img/map_icon.png";
mintIcon.iconSize = new GSize(35,33);
var mintIconOptions = {icon:mintIcon};

function initializeGoogleMap(){
	var mapCanvas = document.getElementById('map_canvas');
	if (GBrowserIsCompatible() && mapCanvas) {
		var mapCenterLat = document.getElementById('mapCenterLat').value;
		var mapCenterLong = document.getElementById('mapCenterLong').value;
		if(mapCenterLat!='' && mapCenterLong!=''){
	        map = new GMap2(document.getElementById("map_canvas"));
			var propLatLong = new GLatLng(mapCenterLat, mapCenterLong);
	        map.setCenter(propLatLong, 15);
	        map.setUIToDefault();
			var propMarker = new GMarker(propLatLong,mintIconOptions);
			map.addOverlay(propMarker);
		}
	}
}

function alertResponse(){
	alert(propertyLatLong);
}

