		jQuery(function() {
			function maximizedPopup(e) {
				if (e.ctrlKey || e.shiftKey || e.metaKey) return;
				e.preventDefault(); 
				var w = window.open(this.href, 'infoWindow','width='+(screen.width-10)+',height='+(screen.height-40)+',top=0,left=0,scrollbars=yes');
				if (w && !w.closed) { w.moveTo(0, 0); w.resizeTo(screen.width, screen.height); w.focus(); }
				return false;
			}
			jQuery('.investInAsturias').filter('a[@href]').click(maximizedPopup);
		});
