function launchMap(url) {
	pageToOpen='../map.html';
	width = 865;
	height = 483;

	windowTop = screen.availHeight/2-height/2;
	windowLeft = screen.availWidth/2-width/2;
	map = window.open(pageToOpen,'center_map','height='+height+',width='+width+',top='+windowTop+',left='+windowLeft+',status=0,scrollbars=0,location=0');
	map.focus();
}

function jumpBack(url) {
	parentWindow = window.opener;
	if (parentWindow) {
		parentWindow.location = url;
		parentWindow.focus();
	} else {
		parentWindow = window.open('colorado-real-estate/'+url,'_blank');
	}
}