var geocoder = null, map = null; 
function DisplayMap(addr, title) {
	if (addr && addr !== '') {
		var ops = {
			zoom: 15, mapTypeId: google.maps.MapTypeId.ROADMAP,
			mapTypeControl: true,
			navigationControl: true
		};
		map = new google.maps.Map(document.getElementById("google-map"), ops);
		geocoder = new google.maps.Geocoder();
		geocoder.geocode({ address: addr }, function(results, status) {
			if (status == google.maps.GeocoderStatus.OK && results.length) {
				if (status != google.maps.GeocoderStatus.ZERO_RESULTS) {
					map.setCenter(results[0].geometry.location);
					var marker = new google.maps.Marker({
						map: map,
						title: title,
						position: results[0].geometry.location
					});
				}
			}
		});
	}
}
