Files
2026-07-03 12:24:58 -04:00

1311 lines
64 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head><link rel="icon" href="/images/LeePALogo.png" /><link href="/styles/lcpaText.css?version=51" type="text/css" rel="stylesheet" media="all" /><link href="/styles/DisplayParcel.css?version=61" type="text/css" rel="stylesheet" media="screen" /><link href="/styles/PrintDisplayParcel.css?version=54" type="text/css" rel="stylesheet" media="print" /><link href="/styles/lcpatype.css?version=52" type="text/css" rel="stylesheet" media="all" /><meta http-equiv="cache-control" content="no-cache" /><meta http-equiv="expires" content="0" /><meta name="robots" content="noarchive, nosnippet, noimageindex" /><meta http-equiv="googlebot" content="noarchive" />
<script type="text/javascript">
function taxYearChanged() {
var select = document.getElementById("selectTaxYear");
window.location = select[select.selectedIndex].value;
}
function newQuery() {
var parent = opener;
if (parent != null) {
window.close();
parent.location = "/Search/PropertySearch.aspx";
}
else {
window.location = "/Search/PropertySearch.aspx";
}
}
function goResults() {
var parent = opener;
if (parent != null) {
window.close();
}
else {
window.location = "/Search/PropertySearch.aspx";
}
}
function goHome() {
var parent = opener;
if (parent != null) {
window.close();
parent.location = "/Default.aspx";
}
else {
window.location = "/Default.aspx";
}
}
function showAllPhotos() {
var chkbox = document.getElementById("ViewOtherPhotosCheckBox");
var url = window.location.href;
var hash = window.location.hash.toString();
url = url.replace("&AllPhotos=false", "");
url = url.replace("&AllPhotos=true", "");
url = url.replace(hash, "");
if (chkbox.checked) {
url += '&AllPhotos=true';
}
else {
url += '&AllPhotos=false';
url = url.replace("&AllPhotos=true", "");
url = removeURLParameter(url, "PhotoIndex");
}
window.location.href = url + hash;
}
function OnKeyPress(e) {
if (e.keyCode == "27") {
closeComp();
closeTaxLetter();
closeAllPopups();
}
}
function pageLoad(sender, args) {
$addHandler(document, "keydown", OnKeyPress);
}
function closeComp() {
var control = document.getElementById("AlertBoxComps");
control.style.visibility = "hidden";
}
function closeTaxLetter() {
var control = document.getElementById("TaxLetterDiv");
control.style.visibility = "hidden";
}
function closeCurrentTaxLetter() {
var control = document.getElementById("CurrentTaxLetterDiv");
control.style.visibility = "hidden";
}
function goPrint() {
window.open("/Display/DisplayParcel.aspx?FolioID=10094175&PrintDetails=true", "leepaPrintWindow");
}
function loadParcel() {
if (window.name == "leepaPrintWindow") {
window.print();
}
}
function removeURLParameter(url, parameter) {
//prefer to use l.search if you have a location/link object
var urlparts = url.split('?');
if (urlparts.length >= 2) {
var prefix = encodeURIComponent(parameter) + '=';
var pars = urlparts[1].split(/[&;]/g);
//reverse iteration as may be destructive
for (var i = pars.length; i-- > 0;) {
//idiom for string.startsWith
if (pars[i].lastIndexOf(prefix, 0) !== -1) {
pars.splice(i, 1);
}
}
url = urlparts[0] + '?' + pars.join('&');
return url;
} else {
return url;
}
}
document.addEventListener("DOMContentLoaded", function () {
var ddl = document.getElementById('TaxRollLetterYears');
ddl.addEventListener("change", function () {
var selectedYear = ddl.value;
if (selectedYear) {
var url = 'DisplayTaxRollValueLetter.aspx?FolioID=10094175&TaxRollYear=' + encodeURIComponent(selectedYear);
window.open(url, '_blank');
}
});
});
function closeAllPopups() {
var control = document.getElementById('ownershipTypeDiv');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
control = document.getElementById('legalDiv');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
control = document.getElementById('currentValuesDiv');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
//control = document.getElementById('AlertBox');
//if (control.style.visibility == "visible" || control.style.visibility == "")
// control.style.visibility = "collapse";
control = document.getElementById('UploadPhotoAlertBox');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
control = document.getElementById('ownershipDiv');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
control = document.getElementById('addressHistoryDiv');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
control = document.getElementById('TaxRollDiv');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
control = document.getElementById('AlertBoxInternalCode');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
control = document.getElementById('AlertBoxHiddenFromWeb');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
control = document.getElementById('VerifierCompleteBox');
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
}
function toggleOwnershipVisibility(controlId) {
var control = document.getElementById(controlId);
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "collapse";
else {
control.style.visibility = "visible";
var parent = document.getElementById('divDisplayParcelOwner');
control.style.left = parent.style.left;
control.style.top = parent.style.top;
}
}
function toggleVisibility(controlId) {
var control = document.getElementById(controlId);
if (control.style.visibility == "visible" || control.style.visibility == "") {
control.style.visibility = "collapse";
control.style.display = "none";
}
else {
control.style.visibility = "visible";
control.style.display = "block";
var parent = document.getElementById('divDisplayParcelOwner');
control.style.left = parent.style.left;
control.style.top = parent.style.top;
}
}
function toggleVisibilityCurrentValues(controlId) {
var e = event || window.event;
if (e) {
// capture the mouse position
var posx = 0;
var posy = 0;
if (e.pageX || e.pageY) {
posx = e.pageX;
posy = e.pageY;
} else if (e.clientX || e.clientY) {
posx = e.clientX;
posy = e.clientY;
}
var control = document.getElementById(controlId);
if (control.style.visibility == "visible" || control.style.visibility == "") {
control.style.visibility = "collapse";
control.style.display = "none";
}
else {
control.style.visibility = "visible";
control.style.display = "block";
var parent = document.getElementById('PropertyDetailsCurrent');
control.style.left = (parseInt(posx) - 250) + 'px';
control.style.top = parent.style.top;
}
}
}
function toggleVisibilityPhotoMessage(controlId) {
var e = event || window.event;
if (e) {
// capture the mouse position
var posx = 0;
var posy = 0;
if (e.pageX || e.pageY) {
posx = e.pageX;
posy = e.pageY;
} else if (e.clientX || e.clientY) {
posx = e.clientX;
posy = e.clientY;
}
var control = document.getElementById(controlId);
if (control.style.visibility == "visible" || control.style.visibility == "") {
control.style.visibility = "collapse";
control.style.display = "none";
}
else {
control.style.visibility = "visible";
control.style.display = "block";
var parent = document.getElementById('PropertyDetailsCurrent');
control.style.left = (parseInt(posx) - 300) + 'px';
control.style.top = parent.style.top;
}
}
}
function toggleVisibilityChangeText(event, controlId, link, obj) {
var e = event || window.event;
if (e) {
// capture the mouse position
var posx = 0;
if (e.pageX || e.pageY) {
posx = e.pageX;
} else if (e.clientX || e.clientY) {
posx = e.clientX;
}
if (posx == 0) {
//in case we got here from the keyboard only
if (window.outerWidth > 0)
posx = window.outerWidth / 2;
}
var control = document.getElementById(controlId);
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "hidden";
else {
control.style.left = (parseInt(posx) - 110) + 'px';
control.style.visibility = "visible";
var textControl = document.getElementById('AlertBoxTrimText');
textControl.innerHTML = link;
}
}
}
function toggleVisibilityInternalCode(event, controlId, link, obj) {
var e = event || window.event;
if (e) {
// capture the mouse position
var posx = 0;
var posy = 0;
if (e.pageX || e.pageY) {
posx = e.pageX;
posy = e.pageY;
} else if (e.clientX || e.clientY) {
posx = e.clientX;
posy = e.clientY;
}
var control = document.getElementById(controlId);
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "hidden";
else {
control.style.left = (parseInt(posx) - 200) + 'px';
control.style.top = (parseInt(posy) - 80) + 'px';
control.style.visibility = "visible";
}
}
}
function toggleVisibilityHiddenFromWeb(event, controlId, link, obj) {
var e = event || window.event;
if (e) {
// capture the mouse position
var posx = 0;
var posy = 0;
if (e.pageX || e.pageY) {
posx = e.pageX;
posy = e.pageY;
} else if (e.clientX || e.clientY) {
posx = e.clientX;
posy = e.clientY;
}
var control = document.getElementById(controlId);
if (control.style.visibility == "visible" || control.style.visibility == "")
control.style.visibility = "hidden";
else {
control.style.left = (parseInt(posx) - 200) + 'px';
control.style.top = (parseInt(posy) - 80) + 'px';
control.style.visibility = "visible";
}
}
}
function toggleVisibilityTaxLetter(event, link) {
var control = document.getElementById("TaxLetterDiv");
var e = event || window.event;
if (e) {
// capture the mouse position
var posy = 0;
if (e.pageX || e.pageY) {
posy = e.pageY;
} else if (e.clientX || e.clientY) {
posy = e.clientY;
}
if (control.style.visibility === "visible" || control.style.visibility === "")
control.style.visibility = "hidden";
else {
var textControl = document.getElementById('TaxLetterText');
textControl.innerHTML = link;
control.style.visibility = "visible";
control.style.top = (parseInt(posy, 10)) + 'px';
}
}
}
function toggleVisibilityCurrentTaxLetter(event, link) {
var control = document.getElementById("CurrentTaxLetterDiv");
var e = event || window.event;
if (e) {
// capture the mouse position
var posy = 0;
if (e.pageX || e.pageY) {
posy = e.pageY;
} else if (e.clientX || e.clientY) {
posy = e.clientY;
}
if (control.style.visibility === "visible" || control.style.visibility === "")
control.style.visibility = "hidden";
else {
var textControl = document.getElementById('CurrentTaxLetterText');
textControl.innerHTML = link;
control.style.visibility = "visible";
control.style.top = (parseInt(posy, 10)) + 'px';
}
}
}
function toggleVisibilityComp(event, link) {
var control = document.getElementById("AlertBoxComps");
var e = event || window.event;
if (e) {
// capture the mouse position
var posy = 0;
if (e.pageX || e.pageY) {
posy = e.pageY;
} else if (e.clientX || e.clientY) {
posy = e.clientY;
}
if (control.style.visibility === "visible" || control.style.visibility === "")
control.style.visibility = "hidden";
else {
var textControl = document.getElementById('AlertBoxCompsText');
textControl.innerHTML = link;
control.style.visibility = "visible";
control.style.top = (parseInt(posy, 10)) + 'px';
}
}
}
function toggleVisibilityVerifier(event, link) {
var control = document.getElementById("VerifierCompleteBox");
var e = event || window.event;
if (e) {
// capture the mouse position
var posy = 0;
if (e.pageX || e.pageY) {
posy = e.pageY;
} else if (e.clientX || e.clientY) {
posy = e.clientY;
}
if (control.style.visibility === "visible" || control.style.visibility === "")
control.style.visibility = "hidden";
else {
var textControl = document.getElementById('AlertBoxCompsText');
textControl.innerHTML = link;
control.style.visibility = "visible";
control.style.top = (parseInt(posy, 10)) + 'px';
}
}
}
</script>
<title>
Online Parcel Inquiry | Lee County Property Appraiser
</title></head>
<body onload="loadParcel();">
<div id="header">
<div id="banner">
<div class="left">
<a href="/Default.aspx">
<img src="/images/LeePALogo.png" alt="Lee County Property Appraiser Home" height="60" style="padding-top: 2px;" />
</a>
</div>
<div id="headerLogo">Lee County Property Appraiser</div>
<div id="headerTaxYear">
</div>
<div class="clear"></div>
</div>
<div id="navigation">
<div style="display: block; text-align: right; margin-right: 20px;">
<a id="LowerParcelHyperLink" href="/Display/DisplayParcel.aspx?FolioID=">Previous Parcel Number</a>
<a id="HigherParcelHyperLink" href="/Display/DisplayParcel.aspx?FolioID=">Next Parcel Number</a>
<a id="TangibleAccountsHyperLink" href="/Display/DisplayAccount.aspx.aspx?FolioID=">Tangible Accounts</a>
<a id="TaxEstimatorHyperLink" href="/taxestimator/default.aspx?FolioId=">Tax Estimator</a>
<a id="CapeHyperLink" href="http://www.capecoral.gov/department/information_technology_services/disclaimer.php#.UzAwnLV3s-U" target="eCape">Cape Coral Fees</a>
<a id="TaxBillsLink" href="https://lee.county-taxes.com/public/search/property_tax" target="_blank">Tax Bills</a>
<a href="javascript:goPrint();">Print</a>
</div>
</div>
</div>
<form method="post" action="./DisplayParcel.aspx?FolioID=10094175" id="Form1">
<div class="aspNetHidden">
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="02DMWx3dDvweGY73X1rG9YQ9QkN1crofO0P30858Om/T0/QbuF2Ed/NvuOlpkBvJTro/XvknWc/dzb3K0nAW063qZSiiEEHwsXpR+PRiAZSvWNMFbVtavIfSqJWe9A940xz72AzVLfraWp8dK9LbWK5t3paIB1okxy8VbS2+ecpavzcXkC/OeFHQH64OkNcZgZ433IMpdiAJmzmKdK4qBNQGvvypKrY3JuTskoG5SLKiRkBryQn6A5fm3RsAKpQ4vb9DSoeT19iUnFThc5nAE+VPGEfo0pgVGnDUDHYDESkK+SfpaBGATQp7MojnhXdy4/bBnRpKQ1PESBsBdE7A7hIgcF3WqemygCOgXJ6/P+tOaWyrN5fm2liAPdrLdx7E9wEJZ91fx5xFcxNVmOIALvk6cNN/5zz8n1H8d7tUWFkHhObeRWYkWZAaeWIvD7q0gxOumdQ6TFrhRYHyQez1t68CXX3qQZaTftUvVnEEJ/jPBaGSZpBaUH+sdih9aSKcXVDbUrEQiP8l+woGYs9n+WclE4/VT1RPTJ/EIDcMEo+9WS+Y53mSVfQerlqcZoSRzPRTaqqgPbU4b9voJ83geF8qFKxneM+0LU+fbxCA8FWoQ5qTkCjVlBTgUAyCOHrx4fDT3v1iSLBVQOXvO8jyN1sdqYPP3fSI0Ndw04+AgZkqwHzicfuZYqrLFIRm2EcD0nyd6S3uOrcJF7/OdMN3KUU+2SHBtqwLaZzGPKGT5RwbWbsSwQSctIlYEHkj4o3qSThvtgUW2AyaWljXzyzgr1/qV0DNyGaUcwsYW1Eb3EHTDGrJLZ5+rfxZeT/QfbpViiX5R0G6pqd8QOJKB8eXSVdvWGfVdDwjzpkg274Zpd5HzXJpQk/iDA+Ru5zv89FaM8ID07/WJPPKFVufd53m36SikUXXrbRbWFsy9WEj2RRDQU81okDYj/NMXbX9KyujQ6EZWw==" />
</div>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['Form1'];
if (!theForm) {
theForm = document.Form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
<script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIjSCblv-UGuxUE6GNfmz47i_-T_gbNtOvSxnLLsn36QhrMBJw2&amp;t=638914220334897068" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yMyxcB4EBaaU3UwDL8QTt_dOmwzcmIpZ2pEAeznnTFZflrnyfXJ0cwL7FDFOMMSGlM7RLSRZsZA7Epiu7IwGQ0YtqZvq-M16GuiZ0sw_ffKy_w1BwKmSNhINnNwz4EWB8OWhfMI1&amp;t=ffffffff9763f56e" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadKN9DTz_pXDZxOaKMXdG-2QW4AuVSuj6U0JDV3CF6NSEnBsfmijoWxgLaFMrwd4c9kvXJGlrIvy_u2e280uaEp0ToFgR77hHSixOpegtZ37sdnj6llQ1bTqVrStrfz2lEuhZymU1&amp;t=ffffffff9763f56e" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=Y3m6UrVMbqJVE-kQ9gioH0PbfmYPfBLUFgSyXUprO2qwX5LVj-iHPDe6BwY6DfTYUJMho2mdOd-TDyXhBDnT2JVmgDFVP7-atLuIkcELsggpR6D60&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=gWcrHB-EGC1p4LtZa-lbj7I2hutw41gaT6fMreE6i3-YgQF3rANbIQVSiY9Zfu08IQTKeMHad9NkqSNwEWoZJnAvESw1&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=YGQkKErHFDdGeCMY44uk_m-udV_GmN-xrwtf90_cowkpG5dtm4CG4CEsctnje5zrXZybWKmGs9SCeEMrljAk6PRfRpr1_DUHVoCGF18uGipMuQ820&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=_sGp8_9bNHYNyQqxdvQRqU7Jl9VHwXhJM2V73x50W8rs_NH5leqEi-Msjuw2t5wWpgRqbo_dLRgSPLeaqCOYgRjwMudNjF0HpNMbgpZlW-CoEYtd0&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=cIIHhetD0FO8FyFjoi6ghenvp4QCPtuxsm4hePq2oFPg6M2wtyzQzQ05YA-91Jb-Nn-FfV7muRNvAZbBrdQiCmo-Igtve6mQM-Ahs94T-BuTYv9U0&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=zhB4TnNg5SCnTud0nPZV0JranAccs4XVzg9xxaKO_-XXSneq1E8pdbtOwC8DCb0FIUHGslGozP0kdwyMsRO_dDyYTnDfYbobnxo_6zjCwR5MvUfi0&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=leIq-rn6Nim8cPSe84CIAqcqZJhHGpDvVlTnmPqtDUItND-kzueMzRaFtIAB9BcJJ5zH8TAy8v5sL71rJ-vaQJtQfwNEjN9l2srUtCLxnhy6Vjsn0&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=6T0HpFRcmR5soosVgefabb6csvSe4p5tnwJldjFxYK3oSX7fS3SFeNDZIXhuuDBZp1ils4udrGTLff1gXyUej1SUGwtEl-XMFM0tBHrAtBuQSG9a0&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=I7Upt9kFVtBZiqZm-4CpKksAHk9rB7jLTyjrCk4hsx77sUzrz9hes4VWLiRPIWDLjJWlEFZn3xalmgvJ7C0x6DjREN3p-wlDA_Hm6lDhzQf-oUWG0&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=0ZrMKVP2U7wQDZQ-62KUNYfadsFVJ4c3fgkDwpXkUvniCZvgc6oy3EYMbcSHCmu9rDatzWY74iKeavSAex5zWaM-Pr6TFuBKuejFpMFG7OR0fVJw0&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=SbtnVWs8LtdvW3GxieYZlUrCrsrT2XkndDnMb4Oz0z-CGRjafbiS9et7o8xi17O7uAJCtt7ulxQgcO5ARxRaH4HstKV4UO9Hg0Xtvaq1seSUziKj0&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=2GkmNxDF8rvhdbEDDwPqmgXz4M-TlX2IBBr5SAzhWzGL7Unm_bVwho5W9SNWjIxXzlGmX-GsFcHPfK40vYD4ZGg_haZgWsYjJAF3gcGfWHfiDvmO0&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=IfGYeQzgq1x-pZCFZaGdA63XRuOKZZ9r88t5dCS0jeZkpbXkNeYMiCC6-VCo6GK2DbYoDL0KLP5B3CMQHnLwt-7cSX_LEeZsG6tRElc4821-E8t00&amp;t=ffffffffb56adc1f" type="text/javascript"></script>
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="6845A73A" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="f/gKbpUR5rtCY+8WBKxxAw8TIIASQqotEYnDwRbjQyupSN6vkY90lajxyJ8/qLYZ8Qgk9gbADpR+xtIMAuogBHwuRz9H7WxVEauHK51u7SaNp/IoA9H8A8FVXrysL0DbHyiQpPC8W+fnHbCyUQJ2/5pelubFcQT7ogzxqrKX/5CaMmjBkbTVirwEWQMDA57pedlcIDIdU9V9FK/M0ZYp1uEn7L0=" />
</div>
<script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('PropertySearchUScriptManager', 'Form1', [], ['PropertySearchUScriptManager',''], [], 90, '');
//]]>
</script>
<input type="hidden" name="PropertySearchUScriptManager" id="PropertySearchUScriptManager" />
<script type="text/javascript">
//<![CDATA[
Sys.Application.setServerId("PropertySearchUScriptManager", "PropertySearchUScriptManager");
Sys.Application._enableHistoryInScriptManager();
//]]>
</script>
<div id="content">
<div class="box">
<div style="background-color: #81ACDC;">
<div class="sectionTitle">
<a href="http://fieldcards.leepa.org/CurrentCostCard/Folio/10094175" target="CostCard" title="A printable version of our property record card showing the current individual parts and pieces that are considered in the valuation of your parcel.">
<img style="vertical-align: middle;" src="/images/ReportWithNumbersInfo32.png" alt="Cost Card" />
</a>
Property Data
</div>
<div class="sectionTitleSmaller">
<span id="parcelLabel">00-00-00-00-00000.0000</span>
<span id="deletedLabel" class="lightRed"></span>
</div>
<div class="sectionSubTitle yellowLinks">
<a id="TRVLLink" title="Tax Roll Value Letter unavailable for this parcel" class="aspNetDisabled" onclick="return false;" title="Tax Roll Value Letter unavailable for this parcel" target="_blank" style="text-decoration: none; cursor: not-allowed;">Tax Roll Value Letter </a>
<select name="TaxRollLetterYears" id="TaxRollLetterYears" disabled="disabled" class="aspNetDisabled" style="pointer-events:none; text-decoration:none;">
</select>
</div>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div id="TaxLetterDiv" class="alertBox" style="visibility: hidden; border-collapse: separate; margin-left: 5%; width: 400px;">
<a style="float: right; margin-top: 2px; padding-top: -30px;" onclick="toggleVisibilityTaxLetter(event,'TaxLetterDiv');">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="Close" /></a>
<div id="TaxLetterText" style="padding: 1px; padding-top: 30px; font-size: medium;"></div>
<div style="text-align: center; visibility:hidden;Height:1px;">
<input name="EmailAddress" type="text" id="EmailAddress" class="textField lg" />
<br />
<input type="submit" name="Button1" value="Continue" id="Button1" class="darkBlueButton" style="width:100px;" />
</div>
<div style="text-align: center; ">
<input type="button" class="darkBlueButton" value="Continue" width="100px" onclick="toggleVisibilityTaxLetter(event,'');" style="color: white;">
</div>
</div>
<div class="column columnLeft">
<div id="CurrentTaxLetterDiv" class="alertBox" style="visibility: hidden; border-collapse: separate; margin-left: 5%; width: 400px;">
<a style="float: right; margin-top: 2px; padding-top: -30px;" onclick="toggleVisibilityCurrentTaxLetter(event,'CurrentTaxLetterDiv');">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="Close" /></a>
<div id="CurrentTaxLetterText" style="padding: 1px; padding-top: 30px; font-size: medium;"></div>
<div style="text-align: center; visibility:hidden;Height:1px;">
<input name="EmailAddressCurrent" type="text" id="EmailAddressCurrent" class="textField lg" />
<br />
<input type="submit" name="CurrentTaxLetterButton" value="Continue" id="CurrentTaxLetterButton" class="darkBlueButton" style="width:100px;" />
</div>
<div style="text-align: center; ">
<input type="button" class="darkBlueButton" value="Continue" width="100px" onclick="toggleVisibilityCurrentTaxLetter(event,'');" style="color: white;">
</div>
</div>
</div>
<div id="flex">
<div id="ownershipTypeDiv" class="alertBox" style="visibility: hidden; border-collapse: separate; margin-left: 10%; margin-top: 3%; width: 70%; font-size: medium;">
<a style="float: right; margin-top: 2px; padding-top: -30px;" onclick="toggleOwnershipVisibility('ownershipTypeDiv');return false;">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="Close" /></a>
<div id="Div1" style="padding: 20px; padding-top: 50px;">
<p>
The Owner of Record field displays the name of the person(s) or entity that will show on the tax roll as the "Owner" for value and tax bill purposes. This office is required to determine legal and/or beneficial title for assessment and exemption purposes,
therefore, the person or entity listed as "Owner" <span style="text-decoration: underline;">may not</span> be the fee simple title holder. Please review all sales/transactions or conduct a title search for complete title and ownership information.
</p>
<p><span class="ownershipTypeDiv">Sole Owner:</span>Exclusive ownership interest in real estate, whether by an individual, corporation, or trust. </p>
<p><span class="ownershipTypeDiv">Tenants by Entirety:</span>Ownership of real property held by a married couple, where each person owns the undivided whole of the property, coupled with the Right of Survivorship, so that upon the death of one, the survivor is entitled to the decedent's share.</p>
<p><span class="ownershipTypeDiv">Joint Tenants:</span>Asset ownership for two or more persons in which each owner holds an equal share. In the event of death, an owner's share is divided equally among the surviving co-owners.</p>
<p><span class="ownershipTypeDiv">Tenants in Common:</span>Asset ownership for two or more persons in which each owner holds an individual, undivided share and may give away or sell that share without the permission of the other owner(s). In the event of death, an owner's share is passed to their heirs through probate.</p>
<p><span class="ownershipTypeDiv">Life Estate:</span>An ownership interest in real estate giving a person, the “Life Tenant”, the right to enjoy benefits of ownership of the property during his or her lifetime, while designating to whom ownership of the property will revert to upon their death.</p>
<p><span class="ownershipTypeDiv">Ninety Nine Year Lease:</span>An agreement in which the tenant is allowed to enjoy benefits of ownership, including applying for a homestead exemption on property taxes.</p>
<p><span class="ownershipTypeDiv">Agreement for Deed:</span>An agreement in which the seller retains legal title to the property, while the buyer is allowed to enjoy other benefits of ownership, including applying for a homestead exemption on property taxes.</p>
</div>
</div>
<div id="ownershipDiv" class="ownershipAlertBox noPrint" style="visibility: collapse; display: none;">
<div class="column columnLeft">
<div class="sectionSubTitle">
<img src="/images/navigate_minus.png" alt="Show" title="Hide Complete Ownership Information" class="completeOwnershipButton" onclick="toggleVisibility('ownershipDiv');" />
Owner Of Record
</div>
<p><br/></p>
</div>
</div>
<div id="divDisplayParcelOwner" style="border-style: solid; border-color: #E8E8E8; border-width: thin;">
<div class="column columnLeft">
<div>
<div class="sectionSubTitle" >
Owner Of Record
<br />
<span class="underline" style="font-size: smaller; vertical-align: top; ">
<a href="/AddressChange/AddressChangeForm.aspx/?folioid=10094175" target="_blank">[Change Mailing Address]</a>
</span>
<a onclick="toggleVisibility('ownershipDiv');return false;" class="ownerDivPlusSign">
<img src="/images/navigate_plus.png" alt="Show Complete Ownership Information" title="Show Complete Ownership Information" class="completeOwnershipButton" />
</a>
</div>
<div class="textPanel">
<div>
<br/><br/><br/><br/><br/><br/><br/><br/>
</div>
</div>
</div>
</div>
<div>
<div id="addressHistoryDiv" class="ownershipAlertBox noPrint" style="visibility: collapse; display: none;">
<div class="column columnLeft">
<div class="sectionSubTitle">
<img src="/images/navigate_minus.png" alt="Show" title="Hide Address History Information" class="completeOwnershipButton" onclick="toggleVisibility('addressHistoryDiv');return false;" />
Address History Information
</div>
</div>
</div>
<div class="sectionSubTitle">
<a onclick="toggleVisibility('addressHistoryDiv');" style="visibility: hidden; display: none;">
<img src="/images/navigate_plus.png" alt="Show Address History Information" title="Show Address History Information" class="completeOwnershipButton" /></a>
Site Address<br />
<span style="margin-left: 20px; font-size: smaller;">Site Address maintained by <a href="mailto:eaddressing@leegov.com?subject=Folio%20ID:%20%2010094175" style="text-decoration: underline;">E911 Program Addressing</a></span>
</div>
<div class="textPanel"></div>
</div>
<div>
<div id="legalDiv" class="alertBox" style="visibility: hidden; border-collapse: separate; margin-left: 20%; margin-top: 5%;">
<a style="float: right; margin-top: 2px; padding-top: -30px;" onclick="toggleVisibility('legalDiv');return false;">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="Close" /></a>
<div id="Div2" style="padding: 20px; padding-top: 40px; font-size: medium;">
NOTE: This Property Description is a condensed version of the original legal description recorded in the public records,
developed for internal use, and should not be used when conveying property or for any recorded document. The Property Appraiser assumes no responsibility for the use or interpretations of the Property Description.
</div>
</div>
<div class="sectionSubTitle" style="padding-left: 6px; margin-top: 33px">
Property Description<br />
<span class="lightRed" style="margin-left: 20px; font-size: smaller;">Do not use for legal documents!</span>
<a style="float: right; margin-right: 1px; margin-top: -15px; cursor: pointer;" onclick="toggleVisibility('legalDiv');return false;">
<img class="questionIcon" src="/images/help2_32.png" alt="What's This - Get more information about our property description" /></a>
</div>
<div class="textPanel">
<br />
</div>
<div style="margin: 4px; font-size:90%;">
</div>
<div style="text-align:center;font-weight:bold;">Attributes and Location Details</div>
<table class="appraisalDetails autoAlternate">
<tr>
<tr>
<th>
Total Bedrooms / Bathrooms
<img height="16" src="/Images/information.png" style="vertical-align: bottom; visibility:hidden;" title="Due to mixed use buildings on this property, this count reflects the total number of bedrooms and the total number of bathrooms and fixtures for all the buildings. See the Appraisal Details section below for a breakdown per building." alt="" />
</th>
<td>
0
</td>
</tr>
<tr>
<th>1st Year Building on Tax Roll
<img class="informationIcon" src="/images/information.png" alt="1st year on the tax roll information"
title="The year that the structure first appears on the tax roll or the actual year built of the structure when the first tax roll year is not available." /></th>
<td>
N/A
</td>
</tr>
<tr>
<th>Historic Designation</th>
<td>
</td>
</tr>
</table>
<br />
<div class="overFlowDiv">
</div>
</div>
<br />
<a href="" target="_blank" title="View Parcel on Google Maps">View Parcel on Google Maps</a>
</div>
</div>
<div id="divDisplayParcelTaxMap" style="border-style: solid; border-color: #E8E8E8; border-width: thin;">
<div id="AlertBoxComps" class="alertBox" style="visibility: hidden; border-collapse: separate; margin-left: 5%; width: 400px;">
<a style="float: right; margin-top: 2px; padding-top: -30px;" onclick="toggleVisibilityComp(event,'AlertBoxComp');">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="Close" /></a>
<div id="AlertBoxCompsText" style="padding: 10px; padding-top: 30px; font-size: medium;"></div>
</div>
<div class="column">
<div class="sectionSubTitle" style="min-height: 18px;">
<a href="http://gissvr.leepa.org/geoview2/?folioid=10094175" target="LeePaAerial">[ Tax Map Viewer ]</a>
<a onclick="toggleVisibilityComp(event,'<p>No comparable sales chart is currently available for this parcel.<br/><br/>Use the Comparable Sales control in the Appraisal Information layer found in the <a href=&quot;http://gissvr.leepa.org/geoview2/?folioid=10094175&quot; onclick=&quot;closeComp();&quot; target=&quot;LeePaAerial&quot; >GeoView Tax Map Viewer</a> to see sales in your area.</p>');return false;" target="CompView" style="cursor: pointer;">[ View Comparables ]</a>
</div>
<div class="centerAlign imgDisplay">
<img src="https://gissvr.leepa.org/TaxMapImage/TaxMapImage.aspx?FolioID=10094175&amp;w=387&amp;h=290" alt="Tax Map" />
</div>
<div class="sectionSubTitle" style="min-height: 18px;">
<a href="http://gissvr.leepa.org/pictoipa/default.aspx?folioid=10094175" target="LeePaPic">[ Pictometry Aerial Viewer ]</a>
</div>
</div>
</div>
<div id="divDisplayParcelPhoto" style="vertical-align: bottom; border-style: solid; border-color: #E8E8E8; border-width: thin;">
<div id="UploadPhotoAlertBox" class="alertBoxSmall" style="visibility: hidden; border-collapse: separate;">
<a style="float: right; margin-top: 2px; padding-top: -30px;" onclick="toggleVisibilityPhotoMessage('UploadPhotoAlertBox');">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="What's This" /></a>
<div id="Div4" style="padding: 20px; padding-top: 40px; font-size: medium;">
Don't like the photo of your house? Want new photos on our website?<br />
<br />
Use our <a href="/Membership/Actions/AddPhotos/AddPhotoForm.aspx" target="_blank">Upload Photo</a> link to upload your own photos for display on our website.
</div>
</div>
<div class="column">
<div class="sectionSubTitle">
Image of Structure
<div style="float: right; padding-right: 1px; margin-top: -6px; height: 5px;">
<a onclick="toggleVisibilityPhotoMessage('UploadPhotoAlertBox');return false;">
<img class="questionIcon" src="/images/help2_32.png" alt="What's This" /></a>
</div>
</div>
<div class="centerAlign imgDisplay">
<img src="/images/NotAvailable.png" width="332" height="250" alt="No image available for this parcel" />
</div>
<div class="sectionFooter" style="height: 18px;">
</div>
</div>
</div>
</div>
</div>
<div style="position: relative">
<div class="box">
<div class="sectionTitle">
<a id="ValuesHyperLink" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="ValuesHyperLink2" class="nonLinkLinks" href="/Display/DisplayParcel.aspx">Property Values / Exemptions / TRIM Notices</a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div id="PropertyValueHistory" style="visibility: hidden; display: none;">
<div id="noExemptionNotice" style="padding: 8px; font-weight: bold; text-align: center;">
No existing exemptions found for this property.
</div>
<br />
<hr />
<br />
<div style="text-align:center;">
<div class="overFlowDiv">
<div>
</div>
</div>
<br />
<p>
The <strong>Just</strong> value is the total parcel assessment (less any considerations
for the cost of sale). This is the closest value to <em>Fair Market Value</em> we
produce and is dated as of January 1st of the tax year in question (<a href="https://www.flrules.org/gateway/ruleNo.asp?id=12D-1.002" target="_blank">F.A.C. 12D-1.002</a>).
</p>
<p>
The <strong>Land</strong> value is the portion of the total parcel assessment attributed to the land.
</p>
<p>
The <strong>Market Assessed</strong> value is the total parcel assessment (less
any considerations for the cost of sale) based upon the assessment standard. Most
parcels are assessed based either upon the <em>Highest and Best Use</em> standard
or the <em>Present Use</em> standard&nbsp;(<em><a href="http://www.flsenate.gov/statutes/index.cfm?App_mode=Display_Statute&Search_String=&URL=0100-0199/0193/Sections/0193.011.html"
target="_blank">F.S. 193.011</a>)</em> . For <em>Agriculturally Classified</em>
parcels (or parts thereof), only agricultural uses are considered in the assessment
(<em><a href="http://www.flsenate.gov/statutes/index.cfm?App_mode=Display_Statute&Search_String=&URL=0100-0199/0193/Sections/0193.461.html"
target="_blank">F.S. 193.461 (6) (a)</a></em>). The difference between the <em>Highest
and Best Use/Present Use</em> and the <em>Agricultural Use</em> is often
referred to as the <em>Agricultural Exemption</em>.<br />
(i.e. Market Assessed = Just - Agricultural Exemption)
</p>
<p>
The <strong>Capped Assessed</strong> value is the <em>Market Assessment</em>
after any <em>Save Our Homes</em> or <em>10% Assessment Limitation</em> cap is applied. This assessment
cap is applied to all properties and limits year-to-year assessment increases to either the
<em>Consumer Price Index</em> or 3%, whichever is lower for Homestead properties OR 10% for non-Homestead properties.
</p>
<p>
The <strong>Exemptions</strong> value is the total amount of all exemptions on the parcel.
</p>
<p>
The <strong>Taxable</strong> value is the <em>Capped Assessment</em> after
exemptions (<em>Homestead, etc.</em>) are applied to it. This is
the value that most taxing authorities use to calculate a parcel's taxes.<br />
(i.e. Taxable = Capped Assessed - Exemptions)
</p>
</div>
</div>
</div>
</div>
<div class="box" id="PropertyDetailsCurrent">
<div class="sectionTitle">
<a id="AppraisalHyperLinkCurrent" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="AppraisalHyperLinkCurrent2" class="nonLinkLinks" href="DisplayParcel.aspx"></a>
<a style="margin-right: 1px; margin-top: -13px; cursor: pointer;" onclick="toggleVisibilityCurrentValues('currentValuesDiv');return false;">
<img class="questionIcon" src="/images/help2_32.png" alt="What's This - Get more information about current values" /></a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div id="currentValuesDiv" class="alertBoxSmall" style="visibility: hidden; border-collapse: separate; ">
<a style="float: right; margin-top: 2px; padding-top: -30px;" onclick="toggleVisibilityCurrentValues('currentValuesDiv');return false;">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="Close" /></a>
<div id="Div7" style="padding: 20px; padding-top: 30px; font-size: medium;">
NOTE: This information may be refreshed on a daily basis.
</div>
</div>
<div class="items">
</div>
</div>
<div class="box" id="PropertyDetails">
<div class="sectionTitle">
<a id="AppraisalHyperLink" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a href="http://fieldcards.leepa.org/CostCard/Folio/10094175?TaxYear=0" target="CostCard" title="A printable version of our property record card showing the individual parts and pieces that are considered in the valuation of your parcel for the selected Tax Roll year.">
<img style="vertical-align: middle;" src="/images/ReportWithNumbersInfo32.png" alt="Cost Card" /></a>
<a id="AppraisalHyperLink2" class="nonLinkLinks" href="DisplayParcel.aspx">blah</a>
<a style="vertical-align: top;" onclick="toggleVisibility('TaxRollDiv');return false;" >
<img style="vertical-align: middle; cursor: pointer;" src="/images/SpreadsheetNumbers32.png" alt="What's This" title="Certified Roll Data" /></a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div id="TaxRollDiv" class="taxRollAlertBox" style="visibility: collapse; display: none;">
<div>
<div class="sectionSubTitle">
<img src="/images/navigate_minus.png" alt="Show" class="completeOwnershipButton" onclick="toggleVisibility('TaxRollDiv');" title="Close" />
Certified Roll Data
</div>
<div class="certifiedRollData">
Certified Roll Data not found for this parcel.
</div>
</div>
</div>
<div class="items">
</div>
</div>
<div class="box" id="TaxAuthority">
<div class="sectionTitle">
<a id="TaxAuthorityHyperLink" class="showHideLink" href="/Display/DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="TaxAuthorityHyperLink2" class="nonLinkLinks" href="/Display/DisplayParcel.aspx">Taxing Authorities</a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div class="overFlowDiv">
</div>
</div>
<div class="box" id="EIDetails" style="visibility: hidden; display: none;">
<div class="sectionTitle">
<a id="EIHyperLink" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="EIHyperLink2" class="nonLinkLinks" href="/Display/DisplayParcel.aspx">Adjustments to the Roll (E & I)</a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div class="overFlowDiv">
</div>
</div>
<div class="box" id="SalesDetails">
<div class="sectionTitle">
<a id="SalesHyperLink" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="SalesHyperLink2" class="nonLinkLinks" href="/Display/DisplayParcel.aspx">Sales / Transactions</a>
<a style="cursor: pointer;" href="\Deed\Deeds.aspx" title="Learn more about deeds" target="_blank">
<img class="informationIcon" src="/images/information.png" alt="What's This" /></a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div id="VerifierCompleteBox" class="alertBox" style="visibility: hidden; border-collapse: separate; margin-left: 5%; width: 400px;">
<a style="float: right; margin-top: 2px; padding-top: -30px;" onclick="toggleVisibilityVerifier(event,'VerifierCompleteBox');">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="Close" /></a>
<div id="VerifierCompleteText" style="padding: 10px; padding-top: 30px; font-size: medium;">The Questionnaire for this sale has already been completed.</div>
</div>
<div class="overFlowDiv">
</div>
<div id="AlertBoxInternalCode" class="alertBoxSmall" style="visibility: hidden; border-collapse: separate; margin-left: 10%;">
<a style="float: right; margin-top: 2px; padding-top: -20px;" onclick="toggleVisibilityInternalCode(event, 'AlertBoxInternalCode');">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="What's This" /></a>
<div id="Div5" style="padding: 20px; padding-top: 20px; font-size: medium;">
<span class="bold">Real Property Transfer Code</span>
<br />
<br />
An internal code was used for this document.
</div>
<div id="noSalesNotice" style="padding: 8px; font-weight: bold; text-align: center;">
There is currently no data associated with this parcel.
</div>
</div>
<div id="AlertBoxHiddenFromWeb" class="alertBoxSmall" style="visibility: hidden; border-collapse: separate; margin-left: 10%;">
<a style="float: right; margin-top: 2px; padding-top: -20px;" onclick="toggleVisibilityHiddenFromWeb(event, 'AlertBoxHiddenFromWeb');">
<img style="vertical-align: middle;" src="/images/closeX.png" alt="What's This" /></a>
<div id="Div6" style="padding: 20px; padding-top: 20px; font-size: medium;">
<span class="bold">Instrument Not Viewable</span>
<br />
<br />
Images for this record are not viewable by the general public.
<br />
<br />
Visit the Clerk of Courts web site at <a href="https:\\www.leeclerk.org" target="_blank">www.leeclerk.org</a> for more information.
</div>
</div>
</div>
<div class="box" id="PermitDetails" >
<div class="sectionTitle">
<a id="PermitHyperLink" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="PermitHyperLink2" class="nonLinkLinks" href="DisplayParcel.aspx">Building / Construction Permit Data</a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
</div>
<div class="box" id="NumberingDetails" style="visibility: hidden; display: none;">
<div class="sectionTitle">
<a id="NumberingHyperLink" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="NumberingHyperLink2" class="nonLinkLinks" href="DisplayParcel.aspx">Parcel Numbering History</a>
<a style="cursor: pointer;" href="\Parcel\ParcelSplitOrCombination.aspx" title="Learn more about why a parcel might be renumbered" target="_blank">
<img class="informationIcon" src="/images/information.png" alt="What's This" /></a>
<br />
<span class="sectionSubTitleSmallerToRight" style="visibility: hidden; display: none;"></span>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div class="overFlowDiv">
</div>
</div>
<div class="box" id="RPDetails" style="visibility: hidden; display: none;">
<div class="sectionTitle">
<a id="RPHyperLink" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="RPHyperLink2" class="nonLinkLinks" href="DisplayParcel.aspx">Real Property Tag Information</a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div class="overFlowDiv">
</div>
</div>
<div id="GarbageDetails" class="box">
<div class="sectionTitle">
<a id="GarbageHyperLink" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="GarbageHyperLink2" class="nonLinkLinks" href="DisplayParcel.aspx">Solid Waste (Garbage) Roll Data</a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
</div>
<div class="box" id="ElevationDetails">
<div class="sectionTitle">
<a id="ElevationHyperLink" class="showHideLink" href="DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="ElevationHyperLink2" class="nonLinkLinks" href="DisplayParcel.aspx">Flood and Storm Information</a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
<div id="noFloodNotice" style="padding: 8px; font-weight: bold; text-align: center;">
Flood Insurance Rate Map data is not available for parcels within a municipality. To obtain flood information, contact your <a href="/GovLinks.aspx" target="_blank">municipality</a> directly.
<br />
<br />
Flood Insurance <a href="https://msc.fema.gov/portal/search?AddressQuery= #searchresultsanchor" target="_blank" style="margin-left: 5px;"><span class="red">Find my flood zone</span></a>
</div>
</div>
<div class="box" id="AltAddressDetails" style="visibility: hidden; display: none;">
<div class="sectionTitle">
<a id="AlternateAddressHyperLink" class="showHideLink" href="/Display/DisplayParcel.aspx"><img src="/images/navigate_plus.png" alt="Show" title="Show Details" /></a>
<a id="AlternateAddressHyperLink2" class="nonLinkLinks" href="/Display/DisplayParcel.aspx">Alternate Address Information</a>
<div class="generatedOnExpander">
Generated on 5/15/2026 11:44 AM
</div>
</div>
</div>
<!--FIXME </div>-->
</div>
</div>
<div style="position: absolute; left: 90%; top: 100%">
<div style="position: absolute; left: -50%; top: -50%;">
<input type="hidden" name="hidForModel" id="hidForModel" />
<div id="pnlIssues" class="modalPopup" style="display:block;">
<p style="margin: 20px;">
<span id="lblWarning">By selecting the Continue option you agree to be bound by the Lee County Property Appraiser <a style="text-decoration: underline;color: blue; " href="/PrivacyPolicy.aspx">Privacy and Use Policy.</a></span>
</p>
<div style="text-align: center; margin-bottom: 5px;">
<input type="button" name="btnContinue" value="Continue" onclick="javascript:__doPostBack(&#39;btnContinue&#39;,&#39;&#39;)" id="btnContinue" class="darkBlueButton" style="width:100px;" />
<input type="button" style="width: 100px;" class="darkBlueButton" value="Cancel" onclick="javascript: document.location = 'https://www.leepa.org';" />
</div>
</div>
</div>
</div>
<script type="text/javascript">
//<![CDATA[
(function() {var fn = function() {Sys.Extended.UI.ModalPopupBehavior.invokeViaServer('WarningModal', true); Sys.Application.remove_load(fn);};Sys.Application.add_load(fn);})();Sys.Application.add_init(function() {
$create(Sys.Extended.UI.ModalPopupBehavior, {"backgroundCssClass":"modalBackground","dynamicServicePath":"/Display/DisplayParcel.aspx","id":"WarningModal","popupControlID":"pnlIssues"}, null, null, $get("hidForModel"));
});
//]]>
</script>
</form>
<div class="generatedOn">
Generated on 5/15/2026 11:44 AM
</div>
<div id="footer">
<div id="bottomOfPage" style="text-align: center;">
<a id="FooterLowerParcelLink" class="footLinks" href="/Display/DisplayParcel.aspx?FolioID=">Previous Parcel Number</a>
<a id="FooterHigherParcelLink" class="footLinks" href="/Display/DisplayParcel.aspx?FolioID=">Next Parcel Number</a>
<a class="footLinks" href="javascript:newQuery();">New Query</a>
<a class="footLinks" href="javascript:goResults();">Search Results</a>
<a class="footLinks" href="javascript:goHome();">Home</a>
</div>
</div>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SFZRJ54F6F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-SFZRJ54F6F');
</script>
<script type="text/javascript">!function () { var b = function () { window.__AudioEyeSiteHash = "2d7dda9b78d2021b05ef6305ac2d985c"; var a = document.createElement("script"); a.src = "https://wsmcdn.audioeye.com/aem.js"; a.type = "text/javascript"; a.setAttribute("async", ""); document.getElementsByTagName("body")[0].appendChild(a) }; "complete" !== document.readyState ? window.addEventListener ? window.addEventListener("load", b) : window.attachEvent && window.attachEvent("onload", b) : b() }();</script>
</body>
</html>