var index=0;
var communitiesmap;
// shadow, icon dimensions, etc.
var baseIcon = new GIcon();
//baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
baseIcon.iconSize = new GSize(20, 34);
// baseIcon.shadowSize = new GSize(37, 34);
baseIcon.iconAnchor = new GPoint(1, 1);
baseIcon.infoWindowAnchor = new GPoint(9, 2);
//baseIcon.infoShadowAnchor = new GPoint(18, 25);
function createMarker(point, itemindex) {
// Create a dot icon for a given community
var thisicon = new GIcon(baseIcon);
thisicon.image = "images/marker.gif";
thisicon.iconSize = new GSize(10,10);
var community=communities[itemindex];
var comtitle = community["community"];
markerOptions = { icon:thisicon, title:comtitle};
var marker = new GMarker(point,markerOptions);
//GEvent.addListener(marker, "mouseover", function() {
// marker.
// var curcommunity=document.getElementById("currentcommunity");
//
// curcommunity.
//});
GEvent.addListener(marker, "click", function() {
var text="
";
if (community["selected"]==1) {
text+="
";
}
else {
text+="
";
}
text+="
";
marker.openInfoWindowHtml(text);
});
community['marker']=marker;
return marker;
}
function AddComparisonItem(itemindex) {
var closetext="close this window";
var community = communities[itemindex];
var marker = community['marker'];
var new_name =community["community"];
communitiesmap.getInfoWindow().hide();
for (var i=0;i<3;i++) {
if (selecteditems[i]==-1) {
var item = document.getElementById("community"+(i+1));
markSelected(i+1,item,itemindex+1,true);
return;
}
if (selecteditems[i]==itemindex) {
var text="You have already selected this
community. "+closetext;
marker.openInfoWindowHtml(text);
return;
}
}
var text="You have already selected three
communities. You may either "+closetext+"
and deselect one before choosing another,
or you may use "+new_name+" instead of:";
for (var i=0;i<3;i++) {
var item = document.getElementById("community"+(i+1));
var current_name =item.options[item.selectedIndex].text;
text+="
"+current_name+"";
if (i<2) {text+=", or ";}
}
//text+="
or you may "+closetext;
marker.openInfoWindowHtml(text);
}
function ReplaceSelectedItem(selectboxnum,newitemindex) {
var item = document.getElementById("community"+(selectboxnum+1));
//window.alert("item is "+item);
deselectItem(selectboxnum+1,item,true)
markSelected(selectboxnum+1,item,newitemindex+1,true);
}
function RemoveComparisonItem(itemindex) {
for (var i=0;i<3;i++) {
if (selecteditems[i]==itemindex) {
var item = document.getElementById("community"+(i+1));
deselectItem(i+1,item,true)
return;
}
}
}
var communities=[];
var community={};
//var myDiv1 = document.getElementById("divtest");
community["truename"]=community["community"];
community={};
community["commID"]="1";
community["community"]="Albertson";
community["lat"]="40.7707";
community["lng"]="-73.6487";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="2";
community["community"]="Amagansett";
community["lat"]="40.9795";
community["lng"]="-72.1252";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="3";
community["community"]="Amityville";
community["lat"]="40.6717";
community["lng"]="-73.415";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="4";
community["community"]="Aquebogue";
community["lat"]="40.9356";
community["lng"]="-72.6207";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="5";
community["community"]="Atlantic Beach";
community["lat"]="40.5899";
community["lng"]="-73.7315";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="6";
community["community"]="Babylon";
community["lat"]="40.6945";
community["lng"]="-73.3294";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="7";
community["community"]="Baldwin";
community["lat"]="40.6633";
community["lng"]="-73.6106";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="8";
community["community"]="Bay Shore";
community["lat"]="40.7299";
community["lng"]="-73.2537";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="9";
community["community"]="Bayport";
community["lat"]="40.7479";
community["lng"]="-73.0542";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="10";
community["community"]="Bayville";
community["lat"]="40.9073";
community["lng"]="-73.5571";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="11";
community["community"]="Bellmore";
community["lat"]="40.6612";
community["lng"]="-73.529";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="12";
community["community"]="Bellport";
community["lat"]="40.757";
community["lng"]="-72.9416";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="13";
community["community"]="Bethpage";
community["lat"]="40.7467";
community["lng"]="-73.4843";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="14";
community["community"]="Blue Point";
community["lat"]="40.7504";
community["lng"]="-73.0346";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="15";
community["community"]="Bohemia";
community["lat"]="40.77";
community["lng"]="-73.1138";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="16";
community["community"]="Brentwood";
community["lat"]="40.7818";
community["lng"]="-73.2441";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="17";
community["community"]="Bridgehampton";
community["lat"]="40.9332";
community["lng"]="-72.308";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="18";
community["community"]="Brightwaters";
community["lat"]="40.7214";
community["lng"]="-73.2659";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="19";
community["community"]="Brookhaven";
community["lat"]="40.7758";
community["lng"]="-72.918";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="171";
community["community"]="Brookville";
community["lat"]="40.8152";
community["lng"]="-73.5701";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="20";
community["community"]="Calverton";
community["lat"]="40.9205";
community["lng"]="-72.7363";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="21";
community["community"]="Carle Place";
community["lat"]="40.7506";
community["lng"]="-73.6105";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="22";
community["community"]="Cedarhurst";
community["lat"]="40.6258";
community["lng"]="-73.7282";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="23";
community["community"]="Center Moriches";
community["lat"]="40.7978";
community["lng"]="-72.7972";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="24";
community["community"]="Centereach";
community["lat"]="40.8722";
community["lng"]="-73.0807";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="25";
community["community"]="Centerport";
community["lat"]="40.8928";
community["lng"]="-73.378";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="26";
community["community"]="Central Islip";
community["lat"]="40.7842";
community["lng"]="-73.1991";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="177";
community["community"]="Centre Island";
community["lat"]="40.9076";
community["lng"]="-73.5158";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="27";
community["community"]="Cold Spring Harbor";
community["lat"]="40.8634";
community["lng"]="-73.4431";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="28";
community["community"]="Commack";
community["lat"]="40.845";
community["lng"]="-73.2832";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="29";
community["community"]="Copiague";
community["lat"]="40.6747";
community["lng"]="-73.3932";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="30";
community["community"]="Coram";
community["lat"]="40.8904";
community["lng"]="-73.0104";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="31";
community["community"]="Cutchogue";
community["lat"]="41.0106";
community["lng"]="-72.4737";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="32";
community["community"]="Deer Park";
community["lat"]="40.7607";
community["lng"]="-73.3301";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="166";
community["community"]="Dix Hills";
community["lat"]="40.7961";
community["lng"]="-73.3344";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="33";
community["community"]="East Hampton";
community["lat"]="40.957";
community["lng"]="-72.1989";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="34";
community["community"]="East Islip";
community["lat"]="40.7319";
community["lng"]="-73.1851";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="35";
community["community"]="East Marion";
community["lat"]="41.1289";
community["lng"]="-72.3419";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="36";
community["community"]="East Meadow";
community["lat"]="40.7137";
community["lng"]="-73.5558";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="37";
community["community"]="East Moriches";
community["lat"]="40.8063";
community["lng"]="-72.7567";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="38";
community["community"]="East Northport";
community["lat"]="40.8792";
community["lng"]="-73.3241";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="39";
community["community"]="East Norwich";
community["lat"]="40.8466";
community["lng"]="-73.5323";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="40";
community["community"]="East Quogue";
community["lat"]="40.8507";
community["lng"]="-72.5762";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="41";
community["community"]="East Rockaway";
community["lat"]="40.6437";
community["lng"]="-73.6669";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="43";
community["community"]="Eastport";
community["lat"]="40.8311";
community["lng"]="-72.7298";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="44";
community["community"]="Elmont";
community["lat"]="40.7016";
community["lng"]="-73.7025";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="45";
community["community"]="Farmingdale";
community["lat"]="40.7335";
community["lng"]="-73.4451";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="46";
community["community"]="Farmingville";
community["lat"]="40.8426";
community["lng"]="-73.0437";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="47";
community["community"]="Floral Park";
community["lat"]="40.7224";
community["lng"]="-73.7032";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="176";
community["community"]="Fort Salonga";
community["lat"]="40.9057";
community["lng"]="-73.3011";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="48";
community["community"]="Franklin Square";
community["lat"]="40.7017";
community["lng"]="-73.6766";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="49";
community["community"]="Freeport";
community["lat"]="40.6539";
community["lng"]="-73.587";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="50";
community["community"]="Garden City";
community["lat"]="40.7269";
community["lng"]="-73.6497";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="51";
community["community"]="Glen Cove";
community["lat"]="40.8673";
community["lng"]="-73.6277";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="52";
community["community"]="Glen Head";
community["lat"]="40.8407";
community["lng"]="-73.6189";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="53";
community["community"]="Glenwood Landing";
community["lat"]="40.8283";
community["lng"]="-73.6346";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="54";
community["community"]="Great Neck";
community["lat"]="40.8027";
community["lng"]="-73.7312";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="55";
community["community"]="Great River";
community["lat"]="40.7246";
community["lng"]="-73.1599";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="56";
community["community"]="Greenlawn";
community["lat"]="40.8577";
community["lng"]="-73.3659";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="57";
community["community"]="Greenport";
community["lat"]="41.1031";
community["lng"]="-72.364";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="58";
community["community"]="Greenvale";
community["lat"]="40.8132";
community["lng"]="-73.6256";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="59";
community["community"]="Hampton Bays";
community["lat"]="40.8739";
community["lng"]="-72.5212";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="60";
community["community"]="Hauppauge";
community["lat"]="40.8182";
community["lng"]="-73.2069";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="61";
community["community"]="Hempstead";
community["lat"]="40.705";
community["lng"]="-73.6174";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="62";
community["community"]="Hewlett";
community["lat"]="40.642";
community["lng"]="-73.6942";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="63";
community["community"]="Hicksville";
community["lat"]="40.7634";
community["lng"]="-73.5232";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="64";
community["community"]="Holbrook";
community["lat"]="40.7996";
community["lng"]="-73.0756";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="65";
community["community"]="Holtsville";
community["lat"]="40.8134";
community["lng"]="-73.0472";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="66";
community["community"]="Huntington";
community["lat"]="40.8778";
community["lng"]="-73.4137";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="67";
community["community"]="Huntington Station";
community["lat"]="40.8447";
community["lng"]="-73.4074";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="68";
community["community"]="Inwood";
community["lat"]="40.6192";
community["lng"]="-73.7457";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="69";
community["community"]="Island Park";
community["lat"]="40.603";
community["lng"]="-73.657";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="70";
community["community"]="Islandia";
community["lat"]="40.8047";
community["lng"]="-73.1728";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="71";
community["community"]="Islip";
community["lat"]="40.7378";
community["lng"]="-73.2195";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="72";
community["community"]="Islip Terrace";
community["lat"]="40.7487";
community["lng"]="-73.1864";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="73";
community["community"]="Jamesport";
community["lat"]="40.9444";
community["lng"]="-72.5771";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="74";
community["community"]="Jericho";
community["lat"]="40.7865";
community["lng"]="-73.5368";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="75";
community["community"]="Kings Park";
community["lat"]="40.8885";
community["lng"]="-73.2426";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="172";
community["community"]="Kings Point";
community["lat"]="40.8157";
community["lng"]="-73.7377";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="76";
community["community"]="Lake Grove";
community["lat"]="40.8563";
community["lng"]="-73.1166";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="77";
community["community"]="Laurel";
community["lat"]="40.9763";
community["lng"]="-72.5496";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="78";
community["community"]="Lawrence";
community["lat"]="40.6096";
community["lng"]="-73.7265";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="79";
community["community"]="Levittown";
community["lat"]="40.7245";
community["lng"]="-73.5112";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="175";
community["community"]="Lido Beach";
community["lat"]="40.588";
community["lng"]="-73.6246";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="80";
community["community"]="Lindenhurst";
community["lat"]="40.6854";
community["lng"]="-73.3722";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="81";
community["community"]="Locust Valley";
community["lat"]="40.8771";
community["lng"]="-73.5948";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="82";
community["community"]="Long Beach";
community["lat"]="40.5882";
community["lng"]="-73.6681";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="83";
community["community"]="Lynbrook";
community["lat"]="40.6582";
community["lng"]="-73.6728";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="84";
community["community"]="Malverne";
community["lat"]="40.6753";
community["lng"]="-73.673";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="85";
community["community"]="Manhasset";
community["lat"]="40.7928";
community["lng"]="-73.6933";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="86";
community["community"]="Manorville";
community["lat"]="40.8482";
community["lng"]="-72.7939";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="87";
community["community"]="Massapequa";
community["lat"]="40.6704";
community["lng"]="-73.4712";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="88";
community["community"]="Massapequa Park";
community["lat"]="40.6845";
community["lng"]="-73.4495";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="89";
community["community"]="Mastic";
community["lat"]="40.8021";
community["lng"]="-72.844";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="90";
community["community"]="Mastic Beach";
community["lat"]="40.7613";
community["lng"]="-72.8464";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="91";
community["community"]="Mattituck";
community["lat"]="40.9947";
community["lng"]="-72.5373";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="92";
community["community"]="Medford";
community["lat"]="40.8177";
community["lng"]="-72.9861";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="93";
community["community"]="Melville";
community["lat"]="40.7916";
community["lng"]="-73.4054";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="94";
community["community"]="Merrick";
community["lat"]="40.6595";
community["lng"]="-73.5536";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="95";
community["community"]="Middle Island";
community["lat"]="40.8851";
community["lng"]="-72.9435";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="96";
community["community"]="Mill Neck";
community["lat"]="40.8889";
community["lng"]="-73.5561";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="97";
community["community"]="Miller Place";
community["lat"]="40.9466";
community["lng"]="-72.9931";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="98";
community["community"]="Mineola";
community["lat"]="40.7472";
community["lng"]="-73.6381";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="99";
community["community"]="Montauk";
community["lat"]="41.0383";
community["lng"]="-71.9506";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="100";
community["community"]="Moriches";
community["lat"]="40.8028";
community["lng"]="-72.8224";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="101";
community["community"]="Mount Sinai";
community["lat"]="40.9385";
community["lng"]="-73.0187";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="173";
community["community"]="Muttontown";
community["lat"]="40.8223";
community["lng"]="-73.5271";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="102";
community["community"]="Nesconset";
community["lat"]="40.8461";
community["lng"]="-73.1506";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="103";
community["community"]="New Hyde Park";
community["lat"]="40.7322";
community["lng"]="-73.6846";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="104";
community["community"]="New Suffolk";
community["lat"]="40.9928";
community["lng"]="-72.4752";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="105";
community["community"]="North Babylon";
community["lat"]="40.7306";
community["lng"]="-73.3214";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="170";
community["community"]="North Bellmore";
community["lat"]="40.6895";
community["lng"]="-73.5379";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="106";
community["community"]="Northport";
community["lat"]="40.9028";
community["lng"]="-73.3441";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="107";
community["community"]="Oakdale";
community["lat"]="40.7399";
community["lng"]="-73.1397";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="108";
community["community"]="Ocean Beach";
community["lat"]="40.6477";
community["lng"]="-73.1577";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="109";
community["community"]="Oceanside";
community["lat"]="40.6363";
community["lng"]="-73.6374";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="110";
community["community"]="Old Bethpage";
community["lat"]="40.7618";
community["lng"]="-73.4545";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="111";
community["community"]="Old Westbury";
community["lat"]="40.782";
community["lng"]="-73.5972";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="112";
community["community"]="Orient";
community["lat"]="41.1454";
community["lng"]="-72.2887";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="113";
community["community"]="Oyster Bay";
community["lat"]="40.8671";
community["lng"]="-73.532";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="114";
community["community"]="Patchogue";
community["lat"]="40.7634";
community["lng"]="-73.0179";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="115";
community["community"]="Peconic";
community["lat"]="41.0305";
community["lng"]="-72.46";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="116";
community["community"]="Plainview";
community["lat"]="40.7799";
community["lng"]="-73.4795";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="117";
community["community"]="Point Lookout";
community["lat"]="40.5908";
community["lng"]="-73.58";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="118";
community["community"]="Port Jefferson";
community["lat"]="40.9461";
community["lng"]="-73.0622";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="119";
community["community"]="Port Jefferson Station";
community["lat"]="40.9241";
community["lng"]="-73.0617";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="120";
community["community"]="Port Washington";
community["lat"]="40.8289";
community["lng"]="-73.6867";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="121";
community["community"]="Quogue";
community["lat"]="40.8227";
community["lng"]="-72.6013";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="122";
community["community"]="Remsenburg";
community["lat"]="40.8204";
community["lng"]="-72.7011";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="123";
community["community"]="Ridge";
community["lat"]="40.9071";
community["lng"]="-72.8829";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="124";
community["community"]="Riverhead";
community["lat"]="40.9284";
community["lng"]="-72.6622";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="125";
community["community"]="Rockville Centre";
community["lat"]="40.6634";
community["lng"]="-73.6368";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="126";
community["community"]="Rocky Point";
community["lat"]="40.9537";
community["lng"]="-72.9273";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="127";
community["community"]="Ronkonkoma";
community["lat"]="40.814";
community["lng"]="-73.1284";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="128";
community["community"]="Roosevelt";
community["lat"]="40.6792";
community["lng"]="-73.5855";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="129";
community["community"]="Roslyn";
community["lat"]="40.8001";
community["lng"]="-73.6506";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="130";
community["community"]="Roslyn Heights";
community["lat"]="40.7826";
community["lng"]="-73.6414";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="131";
community["community"]="Sag Harbor";
community["lat"]="40.9966";
community["lng"]="-72.2922";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="132";
community["community"]="Sagaponack";
community["lat"]="40.942";
community["lng"]="-72.2812";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="134";
community["community"]="Sayville";
community["lat"]="40.7463";
community["lng"]="-73.0811";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="135";
community["community"]="Sea Cliff";
community["lat"]="40.8464";
community["lng"]="-73.6445";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="136";
community["community"]="Seaford";
community["lat"]="40.6687";
community["lng"]="-73.4925";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="137";
community["community"]="Selden";
community["lat"]="40.8709";
community["lng"]="-73.047";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="169";
community["community"]="Setauket";
community["lat"]="40.93";
community["lng"]="-73.1021";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="138";
community["community"]="Shelter Island";
community["lat"]="41.0622";
community["lng"]="-72.328";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="139";
community["community"]="Shelter Island Heights";
community["lat"]="41.0782";
community["lng"]="-72.3509";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="140";
community["community"]="Shirley";
community["lat"]="40.7969";
community["lng"]="-72.871";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="141";
community["community"]="Shoreham";
community["lat"]="40.9569";
community["lng"]="-72.9087";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="142";
community["community"]="Smithtown";
community["lat"]="40.8558";
community["lng"]="-73.2146";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="143";
community["community"]="Sound Beach";
community["lat"]="40.957";
community["lng"]="-72.9708";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="145";
community["community"]="Southampton";
community["lat"]="40.8852";
community["lng"]="-72.3952";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="146";
community["community"]="Southold";
community["lat"]="41.0554";
community["lng"]="-72.4209";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="133";
community["community"]="St. James";
community["lat"]="40.8772";
community["lng"]="-73.1553";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="148";
community["community"]="Stony Brook";
community["lat"]="40.9064";
community["lng"]="-73.1284";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="149";
community["community"]="Syosset";
community["lat"]="40.8127";
community["lng"]="-73.501";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="150";
community["community"]="Uniondale";
community["lat"]="40.7031";
community["lng"]="-73.5911";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="151";
community["community"]="Valley Stream";
community["lat"]="40.6648";
community["lng"]="-73.7033";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="152";
community["community"]="Wading River";
community["lat"]="40.9526";
community["lng"]="-72.8299";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="153";
community["community"]="Wainscott";
community["lat"]="40.9524";
community["lng"]="-72.2452";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="154";
community["community"]="Wantagh";
community["lat"]="40.6747";
community["lng"]="-73.5106";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="156";
community["community"]="West Babylon";
community["lat"]="40.7134";
community["lng"]="-73.3571";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="157";
community["community"]="West Hempstead";
community["lat"]="40.6964";
community["lng"]="-73.6525";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="158";
community["community"]="West Islip";
community["lat"]="40.715";
community["lng"]="-73.2977";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="159";
community["community"]="West Sayville";
community["lat"]="40.7316";
community["lng"]="-73.1051";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="160";
community["community"]="Westbury";
community["lat"]="40.7589";
community["lng"]="-73.5882";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="161";
community["community"]="Westhampton";
community["lat"]="40.8229";
community["lng"]="-72.6643";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="162";
community["community"]="Westhampton Beach";
community["lat"]="40.809";
community["lng"]="-72.646";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="174";
community["community"]="Wheatley Heights";
community["lat"]="40.762";
community["lng"]="-73.3669";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="163";
community["community"]="Williston Park";
community["lat"]="40.758";
community["lng"]="-73.6459";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="164";
community["community"]="Woodbury";
community["lat"]="40.8138";
community["lng"]="-73.4691";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="165";
community["community"]="Woodmere";
community["lat"]="40.6362";
community["lng"]="-73.7195";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="167";
community["community"]="Wyandanch";
community["lat"]="40.7471";
community["lng"]="-73.3683";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
community["truename"]=community["community"];
community={};
community["commID"]="168";
community["community"]="Yaphank";
community["lat"]="40.8353";
community["lng"]="-72.9292";
community["selected"]=0;
communities[index++]=community;
//myDiv1.innerText=index;
//myDiv1.appendChild(document.createTextNode(index+"
"));
//document.writeln("index "+index+"
");
function load() {
if (GBrowserIsCompatible()) {
communitiesmap = new GMap2(document.getElementById("map"));
communitiesmap.setCenter(new GLatLng(40.7818, -73.2441), 10);
communitiesmap.addControl(new GSmallMapControl());
communitiesmap.addControl(new GMapTypeControl());
// var polyline = new GPolyline([
// new GLatLng(40.793, -73.315),
// new GLatLng(40.793, -73.515)
//], "#ff0000", 10);
// communitiesmap.addOverlay(polyline);
for (var i=0;i
var selecteditems=[];
selecteditems[0]=-1;
selecteditems[1]=-1;
selecteditems[2]=-1;
function deselectItem(boxnum,item,unselect) {
if (unselect) {item.selectedIndex=0;}
//var thediv;
//thediv = document.getElementById("debugdiv"+boxnum);
//thediv.appendChild(document.createTextNode(item.selectedIndex));
var community=communities[selecteditems[boxnum-1]];
community["selected"]=0;
var marker = community['marker'];
communitiesmap.removeOverlay(marker);
var icon=marker.getIcon();
icon.image="images/marker.gif";
communitiesmap.addOverlay(marker);
selecteditems[boxnum-1]=-1;
}
function markSelected(boxnum,item,itemindex,selectitforme) {
if (selectitforme) {item.selectedIndex=itemindex;}
//var thediv;
//thediv = document.getElementById("debugdiv"+boxnum);
//thediv.appendChild(document.createTextNode(item.selectedIndex));
var community=communities[(item.selectedIndex)-1];
var marker = community['marker'];
communitiesmap.removeOverlay(marker);
var icon=marker.getIcon();
icon.image="images/marker2.gif";
communitiesmap.addOverlay(marker);
selecteditems[boxnum-1]=item.selectedIndex-1;
community["selected"]=1;
}
function notifySelected(boxnum,item) {
for (var i=0;i<3;i++) {
if (item.selectedIndex>0 && selecteditems[i]==item.selectedIndex-1) {
window.alert("Sorry, you have already selected this item. You may only select each community once.");
selecteditems[boxnum-1]=-1;
item.selectedIndex=0;
return false;
}
}
if (selecteditems[boxnum-1]!=-1) {
deselectItem(boxnum,item,false);
}
if (item.selectedIndex==0) {return;}
markSelected(boxnum,item,item.selectedIndex,false);
}