<!--
function showZoomUrl(location) {

	if (location != '') {
		$('gmap-zoom').href = location;
		$('gmap-zoom').show();
	}
	else {
		hideZoomUrl();
	}
}

function hideZoomUrl() {
	$('gmap-zoom').hide();
}

//-->
