var map = null;
var geocoder = null;

Event.observe(window, 'load', function() {
	load();
	showAddress();
});
	
function load() {
	if (GBrowserIsCompatible()) {
		geocoder = new GClientGeocoder();
		map = new GMap2(document.getElementById("map"));
	}
}
 
function showAddress() {
	var address = $('address').innerHTML;

	if (geocoder) {
		geocoder.getLatLng(
			address,
			function(point) {
				if (!point) {
					alert(address + " não foi encontrado");
				} else {
					map.setCenter(point, 15);
					var marker = new GMarker(point);
					map.addOverlay(marker);
					marker.openInfoWindowHtml(address);
				}
			}
		);
	}
}
    
function alterFoto(url){
	document.getElementById('img_foto').src = url;
	document.getElementById('link_foto').href = url;
}

function imprimir(){
	window.print();
}

function popImprimir(id){
	window.open('index.php?act=imprimir&imov_id='+id,'page','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=1024,height=768');
}

function popEnviarEmail(id){
	window.open('index.php?act=email&imov_id='+id,'page','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=350');
}

function popInformacoes(id){
	window.open('index.php?act=informacoes&imov_id='+id,'page','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=450,height=450');
}
