<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>55+ Adult Lifestyle Community in York Beach, Maine</title>
<meta name="Description" content="Bayberry Ridge at 2 Orin Lane in York Beach, Maine offers 1st floor living" />
<meta name="keywords" content="York real estate,property web site,home for sale,Lori Barrett, REALTORŪ,find a home in York,listingdomains.com,www.BayberryRidgeHomes.com,community information,real estate news,maps,buyers guide,search for homes,mls,listing web site,55 community,retirement living,seniors,senior lifestyle,Lori,Barrett,Maine,senior living,active adults,adults only,55 plus homes,Bayberry,new construction,1st floor living,1st floor bedroom,one level living,no stairs in home,community center,club house,close to ocean,2 Orin Lane,4 Orin Lane,Orin,close to York beach,Styles Lane,Spring Pond Estates,radiant heat floors,low fees,includes grounds maintenance,55 adults,hard wood floors,open concept living space,open concept,Yorke Realty,optional floor plans,attached garage,free-standing single family home,cherry kitchen cabinets,York Maine,York,PUD,LEED certifiable,LEED certified,LEED,energy efficient,energy smart,major road access,close to beaches,golf nearby,tennis nearby,boating nearby,close to town" />
<link rel="stylesheet" type="text/css" href="ld_styles.css" />
<link rel="shortcut icon" href="http://www.propertiesonline.com/_media/graphics/favicons/classic.ico" />
<meta name="55 plus lifestyle" content="55+ Adult Community on Orin Lane in Bayberry Ridge near York Beach" />

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="/_media/scripts/jquery/jquery.colorbox/colorbox.css" media="screen" />
<script type="text/javascript" src="/_media/scripts/jquery/jquery.colorbox/jquery.colorbox.js"></script>
<script type="text/javascript" src="ldnet.js"></script>

<style>
<!--
	.titletext { font-size:16pt;color:#FFFFFF}
	.addresstext { font-weight:bold;font-size:10pt;color:#C0C0C0}
	.largetextcolor { font-weight:bold;font-size:12pt;color:#000000}
	.featuresbartext { font-weight:bold;font-size:12pt;color:#C0C0C0}
	.pricetext { font-weight:bold;font-size:14pt;color:#FFFFFF}
	.infotext { font-weight:bold;font-size:8pt;color:#000000}
	.table1text { color:#C0C0C0}
	.table2text { color:#000000}
	.disclaimertabletext { color:#C0C0C0}
	A.bodylink { color:#FFFFFF }
	A.bodylink:hover { color:#FFFFCC }
	A.disclaimerlink { color:#FFFFFF }
	A.disclaimerlink:hover { color:#FFFFCC }
	A.officelink { color:#000000 }
	A.officelink:hover { color:#C0C0C0 }
	A.detailslink { color:#FFFFFF }
	A.detailslink:hover { color:#FFFFCC }
	A.vtlink { font-size:8pt; color:#9C0101;text-decoration:none }
	A.vtlink:hover { font-size:8pt; color:#C0C0C0;text-decoration:none }
	A.quicklink { font-size:8pt; color:#000000;text-decoration:none }
	A.quicklink:hover { font-size:8pt; color:#C0C0C0;text-decoration:none }
-->
</style>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin

//3-way slideshow- by Suzanne Arnold (http://jandr.com/, suzanne@mail.jandr.com)
//Script featured on JavaScript Kit (http://javascriptkit.com)
//Credit must stay intact
//Modified DRB 09.16.19  Added Formatting, and try/catch in onerotate

var Onerotate_delay = 4000; // delay in milliseconds (4000 = 4 secs)
Onecurrent = 0;

<!---SLIDE_SHOW_ARRAY--->
function Onenext() {
	if (document.Oneslideform.Oneslide[Onecurrent+1]) {
		document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent+1].value;
		document.Oneslideform.Oneslide.selectedIndex = ++Onecurrent;
	}
	else Onefirst();
}

function Oneprevious() {
	if (Onecurrent-1 >= 0) {
		document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent-1].value;
		document.Oneslideform.Oneslide.selectedIndex = --Onecurrent;
	}
	else Onelast();
}

function Onefirst() {
	Onecurrent = 0;
	document.images.Oneshow.src = document.Oneslideform.Oneslide[0].value;
	document.Oneslideform.Oneslide.selectedIndex = 0;
}

function Onelast() {
	Onecurrent = document.Oneslideform.Oneslide.length-1;
	document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent].value;
	document.Oneslideform.Oneslide.selectedIndex = Onecurrent;
}

function Oneap(text) {
	document.Oneslideform.Oneslidebutton.value = (text == "Stop") ? "Start" : "Stop";
	Onerotate();
}

function Onestart() {
	window.setTimeout("Onerotate()", Onerotate_delay);
}

function Onechange() {
	Onecurrent = document.Oneslideform.Oneslide.selectedIndex;
	document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent].value;
}

function Onerotate() {
	try {
		if (document.Oneslideform.Oneslidebutton.value == "Stop") {
			Onecurrent = (Onecurrent == document.Oneslideform.Oneslide.length-1) ? 0 : Onecurrent+1;
			if (document.images.Oneshow.filters)
			document.images.Oneshow.filters[0].apply()
			document.images.Oneshow.src = document.Oneslideform.Oneslide[Onecurrent].value;
			if (document.images.Oneshow.filters)
			document.images.Oneshow.filters[0].play()
			document.Oneslideform.Oneslide.selectedIndex = Onecurrent;
			if (document.images.Oneshow.filters)
			window.setTimeout("Onerotate()", Onerotate_delay + 2000);
			else
			window.setTimeout("Onerotate()", Onerotate_delay);
		}
	}
	catch(err){}
}
//  End -->
</SCRIPT>

<script language="JavaScript" src="popup.js" type="text/javascript"></script>
<script type="text/javascript" src="swfobject.js"></script></head>

<body bgcolor="#000033" style="margin:5px 1px 5px 1px;" onload="window.focus(); Onestart()">

<center>
<table border="0" cellpadding="2" cellspacing="0" width="738" bgcolor="#000033">
    <tr>
        <td>
            <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#000033">
                <tr><td align="center" bgcolor="#000033">
<img src="headers/CB_dog.jpg" border="0" /></td></tr>
                <tr>
                    <td width="100%">
                        <table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033">
                        <tr>
                            <td class="titletext" align="center" width="100%">
                            <b>Only 2 Homes Left in this 55+ Community!</b></td>
                        </tr>
                        </table>
                    </td>
                </tr>
                <tr>
                    <td width="100%">
                        <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#000033">
                            <tr>
                                <td width="100%">
                                    <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#999999">
                                        <tr>
                                            <td width="507" valign="top">
                                                <form name="Oneslideform" >
                                                <!-- XML = /builder/xml/listingphotos.ashx?oid=61291&ot=101 --><script type="text/javascript">swfobject.embedSWF("POSlideshow.swf", "altContent1", "507", "475", "9.0.0","", {data_src:"/builder/xml/listingphotos.ashx?oid%3D61291%26ot%3D101%26rel%3D1",bgcolor:"000033",imgcolor:"000033",view_timer:"4",transition_timer:"0.5",has_captions:"y",has_fullscreen:"y"}, {play: "true", loop: "true", menu: "true", quality: "high", scale: "showall", salign: "", wmode: "transparent", bgcolor: "#ffffff", allowScriptAccess: "sameDomain", allowFullScreen: "true", devicefont: "false"}, {id: "altContent1", name: "altContent1", align: "middle"});</script><div id="altContent1" class="row" align="left"><TABLE align="center" width="507" border="0" cellspacing="0" cellpadding="0" bordercolor="#000033">
<TR align="center" height="405"><TD bgcolor="#000033" ><div align="center">
<img src="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph131948954_03052010.jpg" name="Oneshow" style="filter:progid:DXImageTransform.Microsoft.Fade(duration=2)" border="0"></DIV></TD></TR>

<tr height="25">
	<td bgcolor="#000033" align="center">
		<table width="100%">
			<tr>
				<td align="center"><select name="Oneslide" onChange="Onechange();" size="1"><OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph131948954_03052010.jpg"  selected>Welcome to Bayberry Ridge</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph163351295_01182012.jpg">Similar home to be built</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph073911893_03062010.jpg">Free-standing Homes</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph073912862_03062010.jpg">4-season sunroom</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph074005361_03062010.jpg">Appliance allowance</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph073912518_03062010.jpg">Large Bright Rooms</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph073633487_03062010.jpg">Image 7</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph073911628_03062010.jpg">Large loft on 2nd level</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph073633831_03062010.jpg">Image 9</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph073757784_03062010.jpg">1st Floor Master w/ Bath</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph073912206_03062010.jpg">Open Concept Living</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph074005720_03062010.jpg">Hardwood floors</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph074006345_03062010.jpg">Granite kitchen counters</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph163351576_01182012.jpg">Community Club House</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph163351950_01182012.jpg">Vacant lot on #2</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph163352262_01182012.jpg">Vacant lot on #4</OPTION>
<OPTION value="http://www.listingdomains.com/POLibrary/system_data/LD_doc_library/LD117/BARL22206120442P_2251041947P_ph163352574_01182012.jpg">Open concept</OPTION>
</select>
				</td>
				<td align="center" bgcolor="#000033" height="25"><DIV align="center">
<INPUT type=button onClick="Oneprevious();" value="<<" title="Previous" id=button1 name=button1>
<INPUT type=button name="Oneslidebutton" onClick="Oneap(this.value);" value="Stop" title="AutoPlay">
<INPUT type=button onClick="Onenext();" value=">>" title="Next" id=button1 name=button1>
</DIV>

				</td>
				<td align="center" bgcolor="#000033">
				</td>
			</tr>
		</table>
	</td>
</tr>
</TABLE></div>
                                                
                                                <table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033">
<tr><td class="addresstext" align="center" bgcolor="#000033">2 Orin Lane, York, ME 03909<br /><br /></td></tr></table>
                                                <table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033">
<tr><td class="featuresbartext"><b>Features:</b></td></tr></table><table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033"><tr><td class="table1text"><ul>
<li>3 Bedrooms, 3.5 Baths</li><li>55+ Adult Community ~ Optional Floor Plans Starting at $450,000</li><li>Only 1/2 Mile to the Ocean &amp; 5-minutes to York Village</li><li>Free-standing single family home with attached garage</li><li>Cherry kitchen cabinets and granite counters</li><li>Only 1-hr to Boston &amp; 10-minutes to NH Border</li><li>MLS# 1039605</li><li><a class="detailslink" href="javascript:popup('http://www.listingdomains.net/LD_detail.asp?type=details&id=BARL22206120442P_2251041947P&lang=','LD_window','YES',750,500)">View Listing Details</a></li></ul></td></tr></table>
                                                
                                                
<table border="0" cellpadding="10" cellspacing="0" width="100%" bgcolor="#999999"><tr><td class="table2text"  align="left"><span class="largetextcolor">Remarks:</span><br /><div style="text-align: left;"></div>
<div style="text-align: left;">
<p>55+ ADULT LIFESTYLE COMMUNITY IN YORK BEACH.&nbsp;Similar single family, free-standing home to be built Bayberry Ridge only 1/2 mile to Long Sands Beach. This 3-bedroom,&nbsp;3 1/2 bathroom home offers fabulous open concept living space, tile &amp; hardwood floors, granite counters and cherry kitchen cabinets. The 2nd level provides two additional rooms, a full bath and an over-sized loft which overlooks the&nbsp;living room area.&nbsp; Two-car attached garage with direct entry to living and lots of storage. Vaulted ceilings, naturally sun-drenched rooms, central air, and 1st floor master with full bath. These energy efficient homes are LEED certifiable and highly efficient.&nbsp; Many upgrades are also available.&nbsp;This is part of a Planned Unit Development (PUD) and is&nbsp;for age qualified buyers 55 and older.&nbsp;It is not a condominium.&nbsp; There are a total of 17 units, with only&nbsp;2 remaining.&nbsp; Community Center is completed and offers recreational and meeting space for its residents.&nbsp;It has a full kitchen and bathroom.&nbsp;Convenient to all area beaches, golf, tennis, fine and casual dining, entertainment and theater, town amenities and major road access. Call today for your personal preview of this beautiful&nbsp;development!</p>
</div></td></tr></table>
                                                </form>
                                            </td>
                                            <td align="center" width="231" valign="top" bgcolor="#999999">
                                                <table align="center" border="0" cellpadding="0" cellspacing="1" width="100%" bgcolor="#999999">
                                                    
                                                    <tr><td class="pricetext" align="center" bgcolor="#000033"><b>Starting at $450,000</b></td></tr>
                                                    <tr><td align="center"><a class="a2a_dd" href="http://www.addtoany.com/share_save?linkname=&amp;linkurl=http%3A%2F%2Fwww.BayberryRidgeHomes.com%2Findex.asp"><img src="images/share_this_listing.gif" border="0" alt="Share/Save/Bookmark"/></a><script type="text/javascript">a2a_linkname=document.title;a2a_linkurl="http://www.BayberryRidgeHomes.com/index.asp";a2a_onclick=1;</script><script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script></td></tr>
                                                    <tr><td align="center"><table border="0" width="95%" height="50" id="table2" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" style="border: 1px solid #000000"><tr><td align="right"><span style="font-size: 12px;">Music:&nbsp;</span><td><embed src="/music/tinyplayer.swf" flashvars="filename=/music/Destination_Unknown.mp3&AutoLoad=Y&AutoPlay=Y&MusicLoop=Y" quality="high" bgcolor="white" width="76" height="25" name="tinymp3" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" /></td></tr>
</table></td></tr>
                                                    <tr><td align="center" valign="middle">
<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="#000033"><tr><td align="center">
<table border="0" cellspacing="1" cellpadding="1" width="100%" bgcolor="#999999">
<tr><td width="100%"><font class="generaltextwhite"><b>&nbsp;Quick Links</b></font></td></tr>
<tr><td>
<table border="0" cellspacing="1" cellpadding="0" bgcolor="#999999" width="100%">
<!--QLSTART--><tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="vtlink" href="http://mainepropertyforsale.mreis.mlxchange.com/?Page=33849" target="_blank"><b>Search the MLS</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=view&id=BARL22206120442P_2251041947P&lang=','LD_window','YES',550,650)"><b>Schedule a Viewing</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=info&id=BARL22206120442P_2251041947P&lang=','LD_window','YES',550,550)"><b>Request More Info</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('reports.asp?prop=BARL22206120442P_2251041947P','reports','YES',800,600)"><b>Additional Documents</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=listings&id=BARL22206120442P_2251041947P&lang=','LD_window','YES',550,650)"><b>FREE Listing Updates</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('http://www.mapquest.com/maps/map.adp?city=York&state=ME&address=2+Orin+Lane&zoom=8','Map','YES',800,600)">View Map</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('http://maps.google.com/maps?f=q&hl=en&q=2%2BOrin%2BLane,+York,+ME+03909&ie=UTF8&z=15&t=k&om=1','Map','YES',800,600)">Satellite Photo</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.weather.com/weather/tenday/03909?from=36hr_topnav_undeclared" target="_blank">Local Weather</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.yorkmaine.org" target="_blank">Town Municiple Offices</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=mtg&id=BARL22206120442P_2251041947P&lang=','LD_window','YES',550,600)">Calculate Your Payment</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('http://www.regencymtg.com','mortgage','YES',550,480)">Get Pre-Approved</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.yorkme.org" target="_blank">Chamber of Commerce</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.epodunk.com/cgi-bin/genInfo.php?locIndex=2429" target="_blank">York Community Profile</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.maineharbors.com/marina.htm" target="_blank">Southern Maine Marinas</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.neteetimes.com/final/courses/main/megcindex.html" target="_blank">Maine Golf Courses</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="javascript:popup('LD_window.asp?type=emaillisting&id=BARL22206120442P_2251041947P','LD_window','YES',600,450)">Email This Listing</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.GraystoneBuildersofMaine.com" target="_blank"><b>Graystone Builders of Maine</b></a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink ql_tool_iframe" href="/ls/forms/feedback.aspx?oid=61291&ot=101" target="_blank">Feedback</a></td></tr></table>
</td></tr>
<tr><td bgcolor="#FFFFCC">
<table><tr><td width="5%" class="QuickLinkcell">&nbsp;&raquo;</td>
<td width="95%" class="QuickLinkcell"><a class="quicklink" href="http://www.poltools.net/builder/flyer/pdfflyer.ashx?oid=61291&ot=101" target="_blank">Print Flyer</a></td></tr></table>
</td></tr>
<!--QLEND--></table>
</td></tr>
</table></td></tr></table></td></tr>

                                                    
                                                    <tr><td align="center"><img src="http://www.listingdomains.com/system_data/Agent_doc_library/Agent1/BARL22206120442P.jpg" width="125" border="0" /></td></tr>
<tr><td align="center" class="table2text"><span class="largetextcolor">Lori Barrett, REALTORŪ</span>
<br /><b>207.337.1515 (Direct)</b><br />207.363.4300 (Office)<br />207.363.1458 (Fax)
<br /><span class="smalltext">loribarrett@maine.rr.com</span>

<br /><br /><a class="bodylink cb_iframe" href="/ls/forms/ContactAgent.aspx?aid=1898&oid=61291&ot=101" rel="nofollow">Contact Me</a>
<br /><a class="bodylink" href="http://mainepropertyforsale.mreis.mlxchange.com" target="_blank">Visit My Website</a>
<br /><a class="bodylink" href="http://www.listingserver.com/HotSheet.aspx?aid=1898">View My Other Listings</a>
<br /><a class="bodylink" href="javascript:popup('http://www.listingdomains.net/LD_window.asp?type=bio&id=BARL22206120442P_2251041947P','LD_window','YES',550,460)">Your Real Estate Expert in ME & NH!</a><br />
                                                    <tr><td align="center"><br /><table align="center" border="0" cellpadding="1" cellspacing="0" width="90%" bgcolor="#000033"><tr><td><table align="center" border="0" cellpadding="3" cellspacing="2" width="100%" bgcolor="#FFFFFF"><tr><td align="center"><img src="http://www.listingdomains.com/POLibrary/system_data/Logo_doc_library/Logo2/32010115109P.gif" /></td></tr><tr><td align="center"><a class="officelink" href="http://www.YorkeRealty.com" target="_blank"><b>Coldwell Banker Yorke Realty</b></a><br /><span class="smalltext">529 U.S. Route 1, Suite 101<br />York, ME 03909</span><br /><b>207.363.4300</b></td></tr></table></td></tr></table></td></tr>
                                                </table>
                                            </td>
                                        </tr>
                                    </table>
                                </td>
                            </tr>
                        </table>
                    </td>
                </tr>
                <tr><td><table align="center" style="border-top: 2px solid #000033" cellpadding="4" cellspacing="0" width="100%" bgcolor="#FFFFFF">
<tr><td align="center" valign="middle" width="33%"><img src="http://www.listingdomains.com/images/Designation_logos/MLS-REALTOR.jpg" /></td>
<td align="center" valign="middle" width="33%"><img src="http://www.listingdomains.com/images/Designation_logos/EQUAL_HOUSING.jpg" /></td>
<td align="center" valign="middle" width="33%"><img src="http://www.listingdomains.com/images/Designation_logos/MLS.jpg" /></td>
</table></td></tr>
                
<tr><td><table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#000033"><tr><td class="disclaimertabletext"><br /><img border="0" align="left" width="25" src="http://www.listingdomains.net/images/equalhouse.gif">
<span class="textnote">ME Lic. #BR914300 / NH Lic. #065507<br /> <b>Coldwell Banker&reg;</b> and the <b>Coldwell Banker Logo</b> are registered trademarks licensed to Coldwell Banker Real Estate LLC and used by Properties Online, LLC  with permission.  An Equal Opportunity Company.  Equal Housing Opportunity.  Each <b>Coldwell Banker&reg;</b> Office is Independently Owned and Operated.  Not all products or services are available in all states. &copy;&nbsp;2012 Properties Online, LLC, Patent No. US 6,760,707. The above information including square footage is based on data received from the seller and/or from public sources. This information is deemed reliable but has not been independently verified and cannot be guaranteed. Prospective buyers are advised to verify information to their own satisfaction prior to purchase. By providing links to other sites Properties Online, LLC does not guarantee, approve or endorse the information or products available at these sites, nor does a link indicate any association with or endorsement by the linked site to the agent, brokerage, brand or  Properties Online, LLC. Powered by <a class="disclaimerlink" href="http://www.listingdomains.com/">ListingDomains.com</a>.</span></td></tr></table></td></tr>
            </table>
        </td>
    </tr>
</table>
</center>

<!--START GOOGLE ANALYTIC--><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-752021-2";urchinTracker("BayberryRidgeHomes.com");</script><script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type="text/javascript">try{var pageTracker = _gat._getTracker("UA-12264775-3");pageTracker._trackPageview("BayberryRidgeHomes.com");} catch(err) {}</script><!--END GOOGLE ANALYTIC--></body>
</html>

