www.lop.org
Open in
urlscan Pro
209.18.100.40
Public Scan
Submitted URL: http://www.lop.org/
Effective URL: https://www.lop.org/
Submission: On September 01 via manual from US
Effective URL: https://www.lop.org/
Submission: On September 01 via manual from US
Form analysis
1 forms found in the DOMName: homeBanner — POST
<form id="homeBannerForm" class="homeBanner" name="homeBanner" method="POST">
<style type="text/css">
<!--
.sortOrderGrid {
padding-left: 2px;
font-family: arial black;
font-size: 14px;
text-decoration: none;
font-weight: bold;
}
.pgNavPagesGrid,
.pgMovePreviousGrid,
.pgMoveNextGrid {
padding-top: 0px;
padding-left: 5px;
}
.pgPageLink,
.pgMovePrevious,
.pgMoveNext {
text-decoration: none;
}
.typeahead__container {
font-size: 14px !important;
}
.typeahead__container SELECT {
height: auto !important;
font-family: Arial !important;
font-size: 14px !important;
padding: 2px 2px !important;
}
.typeahead__container .typeahead__cancel-button {
height: auto !important;
font-family: Arial !important;
font-size: 14px;
padding: 4px 10px !important;
}
.typeahead__container .homeBannerjs-typeahead {
padding: 2px;
font-size: 14px !important;
width: 30% !important;
}
.typeahead__container .search_button {
padding: 2px;
width: 26px !important;
height: 26px !important;
background: url(/fw/_icons/search-icon.png) transparent 50% 50% no-repeat !important;
border: 1px solid transparent !important;
}
.typeahead__container .search_button:hover {
background: url(/fw/_icons/search-icon.png) #eee 50% 50% no-repeat !important;
border: 1px solid #000 !important;
}
-->
</style>
<link rel="stylesheet" type="text/css" href="/fw/_js/typeahead/jquery.typeahead.min.css">
<script type="text/javascript" src="/fw/_js/typeahead/jquery.typeahead.min.js"></script>
<script language="JavaScript">
$(function() {
homeBannerfetchTypeAhead("")
});
function homeBannerfetchTypeAhead(sLookupField) {
if (sLookupField == "") {
var fm = homeBannerGetGridForm();
if (fm.homeBanner_LookupField) {
sLookupField = fm.homeBanner_LookupField.value;
}
}
resultData =
'["0.4.25_home-banner.jpg","01_Home-Banner.jpg","02.5_home-banner.jpg","02_Home-Banner.1600x900.JPG","03.5_home-banner.jpg","03_Home-Banner.JPG","04_Home-Banner.JPG","05.5-Home-Banner.jpg","05_Home-Banner.JPG","06.5_Home-Banner.JPG","06_Home-Banner.JPG"]';
if (resultData != '') homeBannerinitTypeAhead('FileName', resultData);
}
function homeBannerinitTypeAhead(sLookupField, resultData) {
typeahead = $.typeahead({
input: '.homeBannerjs-typeahead',
minLength: 0,
maxItem: 15,
order: "asc",
hint: true,
searchOnFocus: false,
cancelButton: true,
source: {
data: function() {
return JSON.parse(resultData);
}
},
callback: {
onReady: 'homeBanneronTypeAheadReady',
onClickAfter: 'homeBanneronTypeAheadClickAfter'
}
});
}
function homeBanneronTypeAheadReady(node) {
var hasFocus = $(".homeBannerjs-typeahead") == document.activeElement;
if (!hasFocus) this.hideLayout();
this.toggleCancelButtonVisibility();
}
function homeBanneronTypeAheadClickAfter(node, a, item, event) {
var fm = homeBannerGetGridForm();
fm.submit();
}
</script>
<script language="JavaScript">
function homeBannerGetGridForm() {
for (var f = 0; f < document.forms.length; f++) {
var fm = document.forms[f];
if (typeof(fm.homeBanner_SortBy) != "undefined") {
return (fm)
}
}
alert('Grid Component must reside inside a form! Please try again once document is finished loading.');
return null;
}
function homeBannerSubmitKeyUp(e) {
if (!e) {
e = event
}
if (e.keyCode == 13) {
homeBannerSubmit(true)
return false;
}
}
function homeBannerSubmit(reload) {
var fm = homeBannerGetGridForm();
if (!fm) return;
if (reload) {
if (fm.homeBanner_LookupValue) {
fm.homeBanner_LookupValue.value = "";
fm.homeBanner_LookupValueMM.value = "";
fm.homeBanner_LookupValueDD.value = "";
fm.homeBanner_LookupValueYY.value = "";
}
}
fm.enctype = "application/x-www-form-urlencoded"; //netscape
fm.encoding = "application/x-www-form-urlencoded"; //ie4+
fm.method = "POST";
fm.submit();
}
function homeBannerMoveToPage(PageNumber) {
var fm = homeBannerGetGridForm();
if (!fm) return;
if (PageNumber < 0) PageNumber = 0;
fm.homeBanner_CurrentPage.value = PageNumber;
homeBannerSubmit();
}
function homeBannerShowPaged(Paged) {
var fm = homeBannerGetGridForm();
if (!fm) return;
if (Paged) {
fm.homeBanner_ShowAll.value = ""
} else {
fm.homeBanner_ShowAll.value = "true"
}
homeBannerSubmit();
}
function homeBannerSort(SortString) {
var fm = homeBannerGetGridForm();
if (!fm) return;
// toggle same column sort order ?
if (SortString.toLowerCase() == fm.homeBanner_SortBy.value.toLowerCase()) {
if (fm.homeBanner_SortDir.value.toLowerCase() == "desc") {
fm.homeBanner_SortDir.value = "asc";
} else {
fm.homeBanner_SortDir.value = "desc";
}
// new column click, therefore use default values
} else {
fm.homeBanner_SortDir.value = "none";
}
fm.homeBanner_SortBy.value = SortString;
homeBannerSubmit();
}
function homeBannerDoFindKeyUp(e) {
if (!e) {
e = event
}
if (e.keyCode == 13) {
homeBannerDoFind();
return false;
}
}
function homeBannerDoToggleLookupType(sLookupField) {
if (sLookupField.indexOf("datefilter") > -1) {
document.getElementById("gridTextLookup").style.display = "none";
document.getElementById("gridDateLookup").style.display = "";
} else {
document.getElementById("gridTextLookup").style.display = "";
document.getElementById("gridDateLookup").style.display = "none";
}
homeBannerfetchTypeAhead(sLookupField);
}
function homeBannerDoFind() {
var fm = homeBannerGetGridForm();
if (!fm) return;
if (fm.homeBanner_CurrentPage) fm.homeBanner_CurrentPage.value = 0;
homeBannerSubmit();
}
</script>
<div id="imgGalleryMain">
<div id="homeBanner" class="homeBanner flexslider">
<div class="flex-viewport" style="overflow: hidden; position: relative;">
<ul class="slides" style="width: 2600%; transition-duration: 0.6s; transform: translate3d(-4776px, 0px, 0px);">
<li id="imgN10_clone" class="imgMain clone" aria-hidden="true" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="06_Home-Banner" src="/_filelib/ImageGallery/Home_Slideshow/06_Home-Banner.thumb.1600.JPG" border="0" draggable="false"></a></li>
<li id="imgN0" class="imgMain" style="width: 1592px; margin-right: 0px; float: left; display: block;" data-thumb-alt="">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="0" src="/_filelib/ImageGallery/Home_Slideshow/0.4.25_home-banner.thumb.1600.jpg" border="0" draggable="false"></a></li>
<li id="imgN1" class="imgMain" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="01_Home-Banner" src="/_filelib/ImageGallery/Home_Slideshow/01_Home-Banner.thumb.1600.jpg" border="0" draggable="false"></a></li>
<li id="imgN2" class="imgMain flex-active-slide" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="02" src="/_filelib/ImageGallery/Home_Slideshow/02.5_home-banner.thumb.1600.jpg" border="0" draggable="false"></a></li>
<li id="imgN3" class="imgMain" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="02_Home-Banner" src="/_filelib/ImageGallery/Home_Slideshow/02_Home-Banner.1600x900.thumb.1600.JPG" border="0" draggable="false"></a></li>
<li id="imgN4" class="imgMain" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="03" src="/_filelib/ImageGallery/Home_Slideshow/03.5_home-banner.thumb.1600.jpg" border="0" draggable="false"></a></li>
<li id="imgN5" class="imgMain" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="03_Home-Banner" src="/_filelib/ImageGallery/Home_Slideshow/03_Home-Banner.thumb.1600.JPG" border="0" draggable="false"></a></li>
<li id="imgN6" class="imgMain" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="04_Home-Banner" src="/_filelib/ImageGallery/Home_Slideshow/04_Home-Banner.thumb.1600.JPG" border="0" draggable="false"></a></li>
<li id="imgN7" class="imgMain" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="05" src="/_filelib/ImageGallery/Home_Slideshow/05.5-Home-Banner.thumb.1600.jpg" border="0" draggable="false"></a></li>
<li id="imgN8" class="imgMain" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="05_Home-Banner" src="/_filelib/ImageGallery/Home_Slideshow/05_Home-Banner.thumb.1600.JPG" border="0" draggable="false"></a></li>
<li id="imgN9" class="imgMain" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="06" src="/_filelib/ImageGallery/Home_Slideshow/06.5_Home-Banner.thumb.1600.JPG" border="0" draggable="false"></a></li>
<li id="imgN10" class="imgMain" data-thumb-alt="" style="width: 1592px; margin-right: 0px; float: left; display: block;">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="06_Home-Banner" src="/_filelib/ImageGallery/Home_Slideshow/06_Home-Banner.thumb.1600.JPG" border="0" draggable="false"></a></li>
<li id="imgN0_clone" class="imgMain clone" style="width: 1592px; margin-right: 0px; float: left; display: block;" aria-hidden="true">
<a title="" href="javascript:void(0);"><img class="imgPicture" alt="0" src="/_filelib/ImageGallery/Home_Slideshow/0.4.25_home-banner.thumb.1600.jpg" border="0" draggable="false"></a></li>
</ul>
</div>
<ol class="flex-control-nav flex-control-paging">
<li><a href="#" class="">1</a></li>
<li><a href="#" class="">2</a></li>
<li><a href="#" class="flex-active">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#">6</a></li>
<li><a href="#">7</a></li>
<li><a href="#">8</a></li>
<li><a href="#">9</a></li>
<li><a href="#">10</a></li>
<li><a href="#">11</a></li>
</ol>
<ul class="flex-direction-nav">
<li class="flex-nav-prev"><a class="flex-prev" href="#">Previous</a></li>
<li class="flex-nav-next"><a class="flex-next" href="#">Next</a></li>
</ul>
</div>
</div>
<div style="clear:both;"></div>
<input type="hidden" name="Query" value="">
<input type="hidden" name="homeBanner_CurrentPage" value="1">
<input type="hidden" name="homeBanner_SortBy" value="FileName">
<input type="hidden" name="homeBanner_SortDir" value="asc">
<input type="hidden" name="homeBanner_ShowAll" value="">
<script language="JavaScript">
if ((document.getElementById) && (!document.all)) {
var fm = homeBannerGetGridForm();
if (fm) {
if (fm.homeBanner_LookupValue) fm.homeBanner_LookupValue.onkeydown = homeBannerDoFindKeyUp;
if (fm.homeBanner_LookupValueMM) fm.homeBanner_LookupValueMM.onkeydown = homeBannerDoFindKeyUp;
if (fm.homeBanner_LookupValueDD) fm.homeBanner_LookupValueDD.onkeydown = homeBannerDoFindKeyUp;
if (fm.homeBanner_LookupValueYY) fm.homeBanner_LookupValueYY.onkeydown = homeBannerDoFindKeyUp;
if (fm.homeBanner_PageSize) fm.homeBanner_PageSize.onkeydown = homeBannerSubmitKeyUp;
}
}
</script>
<input type="hidden" name="album" value="">
<input type="hidden" name="LastUploaded" value="">
<input type="hidden" name="UploadedFiles" value="">
<input type="hidden" name="Page" value="1">
<input type="hidden" name="RootURL" value="/_filelib/ImageGallery/Home_Slideshow">
<input type="hidden" name="File" value="">
<input type="hidden" name="DocID" value="1">
<input type="hidden" name="ModID" value="homeBanner flexslider">
</form>
Text Content
LAKE OF THE PINES * About Us * Fee Schedule * Governing Documents * Fourth of July Events * Sports Lounge Menu * Weekly Specials * Sports Lounge Order Online * The Clubhouse Order Online * Employment Information * How to Contact Us * Member Login Menu * About Us * Fee Schedule * Governing Documents * Fourth of July Events * Sports Lounge Menu * Weekly Specials * Sports Lounge Order Online * The Clubhouse Order Online * Employment Information * How to Contact Us * Member Login * * * * * * * * * * * * * 1. 1 2. 2 3. 3 4. 4 5. 5 6. 6 7. 7 8. 8 9. 9 10. 10 11. 11 * Previous * Next HOME Find us on Facebook Order Online View Lake Cam GateAccess.net Lake of the Pines Association 11665 Lakeshore North Auburn, CA 95602 530-268-1141 ♣ T-Cam info@lop.org Local Weather What's Near By