//<![CDATA[

	function popShow() {
		//document.getElementById('privacy_policy').className = 'popperShow';
		//document.getElementById('locker').style.display = 'inline';
		$("#privacy_policy").dialog({
			bgiframe: true,
			width: 800,
			modal: true
		});
	}
	
	function load() {
		var latlng = new google.maps.LatLng(40.849286,-8.3951);
		var myOptions = {
			zoom: 17,
			center: latlng,
			mapTypeId: google.maps.MapTypeId.ROADMAP
		};
		var map = new google.maps.Map(document.getElementById("map"), myOptions);

		var contentString = '<h2>Edite Ferreira - Media&ccedil;&atilde;o de Seguros</h2><br />';
		contentString += 'Somos uma equipa din&acirc;mica a operar no mercado desde 1986,<br />';
		contentString += 'possuindo uma larga experi&ecirc;ncia no ramo segurador.<br /><br />Agente: <b>Maria Edite Ferreira da Cruz</b>';

		var infowindow = new google.maps.InfoWindow({
			content: contentString
		});

		var marker = new google.maps.Marker({
			position: latlng,
			map: map,
			title: 'Edite Ferreira'
		});
		infowindow.open(map,marker);

	}
			
	function popHide() {
		//document.getElementById('privacy_policy').className = 'popperHid';
		//document.getElementById('locker').style.display = 'none';
	}
	
	function setActiveStyleSheet(title) {
		var i, a, main;
		for( i=0; (a = document.getElementsByTagName("link")[i]); i++ ) {
			if( a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") ) {
				a.disabled = true;
				if( a.getAttribute("title") == title ) 
					a.disabled = false;
			}
		}
	}
	
//]]>
