// Copyright 2005 MapBuilder.net // You can't use this script or parts of this script without written permission from MapBuilder.net or Andrew Bidochko. // This script is a part of free service provided by MapBuilder.net and the script can be used from MapBuilder.net server only. // Global Variables // set map variable var map = ""; //set up array of locations var aLocations = new Array; // Storage for sidebar list var listNodeContent = ""; // Create MabBuilder's "tiny" red marker icon var iconsm = new GIcon(); iconsm.image = "http://labs.google.com/ridefinder/images/mm_20_red.png"; iconsm.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png"; iconsm.iconSize = new GSize(12, 20); iconsm.shadowSize = new GSize(22, 25); iconsm.iconAnchor = new GPoint(6, 20); iconsm.infoWindowAnchor = new GPoint(5, 1); // Create MabBuilder's "big" marker icon var iconbig = new GIcon(); iconbig.image = "http://www.google.com/mapfiles/marker.png"; iconbig.shadow = "http://www.google.com/mapfiles/shadow50.png"; iconbig.iconSize = new GSize(20, 34); iconbig.shadowSize = new GSize(37, 34); iconbig.iconAnchor = new GPoint(6, 34); iconbig.infoWindowAnchor = new GPoint(5, 1); // Custom Icon var iconcustom = new GIcon(iconbig); iconcustom.shadow = ''; /* * Copyright (c) 2005 Andriy Bidochko. * http://www.mapbuilder.net * * The script has been generated by MapBuilder.net service and released to the customer under * The GNU General Public License (GPL), which can be found at: http://www.opensource.org/licenses/gpl-license.php * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Foundation; * either version 2 of the License, or any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. */ MapBuilder.prototype.GetGoogleMapsAPIVersion = function() { var v = 0; var scripts = document.getElementsByTagName("SCRIPT") for (var i=0; iPowered By MapBuilder.net v1.0, GMap v'+v+''; try { if (v > 2) { oMap.getContainer().appendChild(info); } else { oMap.div.parentNode.appendChild(info); } } catch (e) { // do nothing } } GMap.prototype.addMapBuilder=function(oMap){ oMap.initialize(this); } MapBuilder.prototype.registerMBEvent=function(oMap){ GEvent.addListener(oMap, "maptypechanged", function() { setCreatedColor(oMap); }); } GMap.prototype.addMapBuilder=function(oMap){ oMap.initialize(this); } //Set "Created By Mapbuilder" color based on map type function setCreatedColor(oMap) { // v1 return ; var info=oMap.ownerDocument.getElementById('CreatedByMapBuilder'); currmaptype = getCurrentMapTypeNumber(oMap); // Regular map if (currmaptype == 0) info.style.color='#000000'; else info.style.color='#FFFFFF'; } //That function will return the element of the array returned by map.getMapTypes() that identifies the current map function getCurrentMapTypeNumber(oMap){ var type=-1; for(var ix=0;ix 7) ? 7 : ((currentZoom == 0) ? 0 : (currentZoom - 1)); map.centerAndZoom(aLocations[num][3], newzoom); } // Function is called when sidebar item is clicked or we are dealing with group boxes. function myInfoWindowHtml(num) { // Map rendering with open info window is very slow. Lets center map first. map.centerAtLatLng(aLocations[num][3]); // Use markeropenInfoWindowHtml(html) aLocations[num][0].openInfoWindowHtml(aLocations[num][2]); // Move focus to the map // Depricated //window.scrollTo(10, 10); } function MapBuilder(){} MapBuilder.prototype.initialize=function(oMap){ // Resize Map //v1 oMap.container.style.width = "600px"; //v1 oMap.container.style.height = "800px"; //v1 oMap.onResize(); this.addMBInfo(oMap); this.renderMBMap(oMap); this.registerMBEvent(oMap); // Set created by color setCreatedColor(oMap); } MapBuilder.prototype.renderMBMap=function(oMap){ //Render Map Locations // Map type: map, satellite, hybrid map.setMapType(map.getMapTypes()[0]); map.addControl(new GLargeMapControl()); map.addControl(new GMapTypeControl()); // Center the map to the default location map.centerAndZoom(new GPoint(-111.09375, 41.11246878918085), 14); // Variables var point; var footerHtml; var InfoHTML; var marker; // Add locations point = new GPoint(75.0000, 41.0000); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Aleksandr Zelichenko, Bishkek, Kyrgyz Rep.
Police
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[0] = new Array(marker, "Aleksandr Zelichenko, Bishkek, Kyrgyz Rep.", InfoHTML, point); point = new GPoint(-79.77241516113281, 43.33816367935935); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_green.png"; InfoHTML = "
Alison Myrden, Burlington, ON
Retired Corrections Officer, ON
\"Be wise -- confuse the thugs,
 Legalize All the drugs!\"
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[1] = new Array(marker, "Alison Myrden, Burlington, ON", InfoHTML, point); point = new GPoint(-122.3358535766601, 48.46660458976068); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Arnold J. "Jim" Byron, Burlington, WA
Retired US Customs Inspector.
"We need to take the control of dnagerous substances away from criminals"
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[2] = new Array(marker, "Arnold J. "Jim" Byron, Burlington, WA", InfoHTML, point); point = new GPoint(-107.811546, 37.938351); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Bill Masters, Telluride, CO
"We need to kick our nation\'s drug war addiction."

Sheriff, San Miguel Co., CO
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[3] = new Array(marker, "Bill Masters, Telluride, CO", InfoHTML, point); point = new GPoint(-93.10089111328125, 31.753860822284455); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Bill Shaw, Natchitoches, LA
Retired  Mineral Wells, TX, Police Dept.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[4] = new Array(marker, "Bill Shaw, Natchitoches, LA", InfoHTML, point); point = new GPoint(-75.979538, 36.852798); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Bill Weiland, Virginia Beach, VA
Former PA State Policeman

\"A prime example of how law enforcement horrifically fails to control drug distribution is the unabated possession and usage by jail and prison inmates.\"

" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[5] = new Array(marker, "Bill Weiland, Virginia Beach, VA", InfoHTML, point); point = new GPoint(-104.7491455078125, 38.84291652482239); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_white.png"; InfoHTML = "
Bob Wiley, Colorado Springs, CO
Venue Booker
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[6] = new Array(marker, "Bob Wiley, Colorado Springs, CO", InfoHTML, point); point = new GPoint(-71.465184, 43.097045); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Bradley Jardis, Hookset, NH
Police Officer



\"A great deal of good for our society can come from ending the failed War on Drugs\"


" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[7] = new Array(marker, "Bradley Jardis, Hookset, NH", InfoHTML, point); point = new GPoint(-94.66983, 38.98196); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_blue.png"; InfoHTML = "
Brian Leininger, Overland Park., KS
\"The War on Drugs creates far more misery than it prevents.\"
Former Asst. DA, Kansas City, KS
Former General Counsel, Kansas Highway Patrol.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[8] = new Array(marker, "Brian Leininger, Overland Park., KS", InfoHTML, point); point = new GPoint(-122.420049, 37.77916); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Carol Ruth Silver, San Francisco, CA
Directing Attorney, San Francisco Sheriff\'s Dept.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[9] = new Array(marker, "Carol Ruth Silver, San Francisco, CA", InfoHTML, point); point = new GPoint(-98.229919, 26.20335); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Celerino "Cele" Castillo, III, McAllen, TX
Former DEA Agent
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[10] = new Array(marker, "Celerino "Cele" Castillo, III, McAllen, TX", InfoHTML, point); point = new GPoint(-82.254753, 34.736118); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Charles Earl Barnett, Simpsonville, SC
Major, Retired, Greenville County (SC) Sheriff\'s Office
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[11] = new Array(marker, "Charles Earl Barnett, Simpsonville, SC", InfoHTML, point); point = new GPoint(-77.308132, 38.841574); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Dave Otto, Fairfax, VA
Former Corrections Officer
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[12] = new Array(marker, "Dave Otto, Fairfax, VA", InfoHTML, point); point = new GPoint(-123.3270263671875, 48.43963318782266); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
David Bratzer, Victoria, BC
Constable, Victoria (BC) Police Dept

\"Police officers in Canada have a common-law duty to protect life and property and drug prohibition makes that more difficult.\"

" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[13] = new Array(marker, "David Bratzer, Victoria, BC", InfoHTML, point); point = new GPoint(-113.581322, 37.10498); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
David Doddridge, St. George, UT
Retired LAPD Narcotics Officer
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[14] = new Array(marker, "David Doddridge, St. George, UT", InfoHTML, point); point = new GPoint(-95.362587, 29.76317); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_orange.png"; InfoHTML = "
Dean Becker, Houston, TX
Former Air Policeman, USAF.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[15] = new Array(marker, "Dean Becker, Houston, TX", InfoHTML, point); point = new GPoint(-114.063194, 51.045075); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Dennis Young, Calgary, Alberta
Former Military Police
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[16] = new Array(marker, "Dennis Young, Calgary, Alberta", InfoHTML, point); point = new GPoint(-81.656197, 30.332239); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_blue.png"; InfoHTML = "
Donald Jones, Jacksonville, FL
\"By legalizing drugs, we will end the racial disparity in adverse consequences of drug use and drug enforcement.\"
Former Municipal Judge, Miami, FL
Currently dean of students and
Assoc. Prof. of Law, Florida Coastal School of Law, Jacksonville, FL
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[17] = new Array(marker, "Donald Jones, Jacksonville, FL", InfoHTML, point); point = new GPoint(-122.239999, 47.202205); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Dr. James Peet, Sumner, WA
Former Policeman
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[18] = new Array(marker, "Dr. James Peet, Sumner, WA", InfoHTML, point); point = new GPoint(-77.00248718261719, 38.932707274379595); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_black.png"; InfoHTML = "
Eric Sterling, Washington, DC
"The drug war amounts to an American Gulag -- nothing more -- nothing less"
Former counsel to US House Judiciary Committee
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[19] = new Array(marker, "Eric Sterling, Washington, DC", InfoHTML, point); point = new GPoint(-80.32894134521484, 27.447200606018633); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_white.png"; InfoHTML = "
Ethel Rowland, Ft. Pierce, FL
Speaker Coordinator for Florida:
rowland@leap.cc
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[20] = new Array(marker, "Ethel Rowland, Ft. Pierce, FL", InfoHTML, point); point = new GPoint(-.081710815429687, 51.514511519376946); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Francis Wilkerson, London, UK
Retired Chief Constable
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[21] = new Array(marker, "Francis Wilkerson, London, UK", InfoHTML, point); point = new GPoint(-74.187103, 40.934841); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Fred Martens, Haledon, NJ
\"You can get over an addiction, but never a conviction\"
Former Director, Pennsylvania Crime Commission
Retired NJ State Police undercover officer.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[22] = new Array(marker, "Fred Martens, Haledon, NJ", InfoHTML, point); point = new GPoint(-84.387711, 33.748657); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_green.png"; InfoHTML = "
Garry L. Jones, Atlanta, GA
\"U.S. drug laws have unjustly targeted and weakened the African American community.\"
Retired Corrections Officer
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[23] = new Array(marker, "Garry L. Jones, Atlanta, GA", InfoHTML, point); point = new GPoint(-81.778069, 41.484485); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_white.png"; InfoHTML = "
George Thornton, Lakewood, OH
Venue Booker
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[24] = new Array(marker, "George Thornton, Lakewood, OH", InfoHTML, point); point = new GPoint(-85.889137, 42.217579); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_orange.png"; InfoHTML = "
Greg Francisco, Paw Paw, MI
Former US Coast Guard
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[25] = new Array(marker, "Greg Francisco, Paw Paw, MI", InfoHTML, point); point = new GPoint(144.9262, -37.8337); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Gregory Denham, Kensington, Victoria, Australia
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[26] = new Array(marker, "Gregory Denham, Kensington, Victoria, Australia", InfoHTML, point); point = new GPoint(4.893195, 52.37312); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Hans van Duijn, Amsterdam, Netherlands
Police Union President (Ret.)
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[27] = new Array(marker, "Hans van Duijn, Amsterdam, Netherlands", InfoHTML, point); point = new GPoint(-84.504694, 39.106441); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Howard Rahtz, Cincinnati, OH
Retired Captain, Cincinnati Police
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[28] = new Array(marker, "Howard Rahtz, Cincinnati, OH", InfoHTML, point); point = new GPoint(-71.107887, 42.418461); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Jack A. Cole, Medford, MA
"This is not a War on Drugs -- it\'s a War on People."
Retired Det. Lieutenant, NJ State Police
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[29] = new Array(marker, "Jack A. Cole, Medford, MA", InfoHTML, point); point = new GPoint(-122.2304534912109, 37.791879793952084); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_blue.png"; InfoHTML = "
James Anthony, Oakland, CA
Former Asst. City Attorney, Oakland, CA
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[30] = new Array(marker, "James Anthony, Oakland, CA", InfoHTML, point); point = new GPoint(-117.866562, 33.745468); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_blue.png"; InfoHTML = "
James P. Gray, Santa Anna, CA
Judge, Superior Court (Ret.), Orange Co., CA
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[31] = new Array(marker, "James P. Gray, Santa Anna, CA", InfoHTML, point); point = new GPoint(-84.550659, 33.952499); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_blue.png"; InfoHTML = "
Jason Fisher, Marietta, GA
State\'s Attorney, Atlanta, GA
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[32] = new Array(marker, "Jason Fisher, Marietta, GA", InfoHTML, point); point = new GPoint(-73.88786315917969, 40.704586878965245); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Jeff Kaufman, Glendale, NY
Former NYPD
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[33] = new Array(marker, "Jeff Kaufman, Glendale, NY", InfoHTML, point); point = new GPoint(-81.314667, 29.89455); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Jerry Cameron, St. Augustine, FL
Former Chief of Police
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[34] = new Array(marker, "Jerry Cameron, St. Augustine, FL", InfoHTML, point); point = new GPoint(-123.20274353027344, 49.265116160083664); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_blue.png"; InfoHTML = "
Jerry Paradis, Vancouver, BC
\"Prohibition makes all of us - not just the user or the addict - less safe and secure.\"

Judge, Provincial Court of British Columbia, Retired

" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[35] = new Array(marker, "Jerry Paradis, Vancouver, BC", InfoHTML, point); point = new GPoint(-4.242511, 55.857809); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Jim Duffy, Glasgow, Scotland
Retired Police Inspector and
Retired Strathclyde Police Union President

" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[36] = new Array(marker, "Jim Duffy, Glasgow, Scotland", InfoHTML, point); point = new GPoint(-87.648193, 41.849838); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_blue.png"; InfoHTML = "
Jim Gierach, Chicago, IL
\"Prohibition -- not drugs -- is at the hub of most U.S. crises worth talking about.\"
Former Cook County, IL, Assistant Prosecutor
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[37] = new Array(marker, "Jim Gierach, Chicago, IL", InfoHTML, point); point = new GPoint(-97.742984, 30.267605); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_white.png"; InfoHTML = "
Jim Kilpatrick, Austin, TX
Venue Booker
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[38] = new Array(marker, "Jim Kilpatrick, Austin, TX", InfoHTML, point); point = new GPoint(-81.26466751098633, 42.98204654832571); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_green.png"; InfoHTML = "
Jim Watkin, London, ON
\"Prohibition of substances was introduced in 1100 B.C.; it didn\'t work then and it doesn\'t work now.\"

Former corrections officer.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[39] = new Array(marker, "Jim Watkin, London, ON", InfoHTML, point); point = new GPoint(-82.387824, 28.554515); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
John Baeza, Brooksville, FL
Retired NYPD
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[40] = new Array(marker, "John Baeza, Brooksville, FL", InfoHTML, point); point = new GPoint(-2.5927734375, 51.85762317032943); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
John Cooper, Welsh Bicknor, UK
Former Constable
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[41] = new Array(marker, "John Cooper, Welsh Bicknor, UK", InfoHTML, point); point = new GPoint(-79.061874, 43.103954); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
John Gayder, Niagara Falls, ON
Current Constable, Niagara Parks Police, Niagara Falls, ON, Canada
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[42] = new Array(marker, "John Gayder, Niagara Falls, ON", InfoHTML, point); point = new GPoint(-104.983917, 39.739109); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_blue.png"; InfoHTML = "
John L. Kane, Denver, CO
"Our national drug policy is incosistent with the nature of justice, abusive of the nature of authority, and ignorant of the compelling force of forgiveness."

Senior US District Court Judge, Denver, CO
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[43] = new Array(marker, "John L. Kane, Denver, CO", InfoHTML, point); point = new GPoint(144.7147, -37.9160); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
John McGeary, Melton South, Victoria, Australia
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[44] = new Array(marker, "John McGeary, Melton South, Victoria, Australia", InfoHTML, point); point = new GPoint(-71.29886627197266, 42.80799561516835); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
John Tommasi, Windham, NH
Retired Salem (NH) Police Dept.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[45] = new Array(marker, "John Tommasi, Windham, NH", InfoHTML, point); point = new GPoint(-72.522674, 41.77536); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Joseph Brooks, Manchester, CT
Retired Police Captain
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[46] = new Array(marker, "Joseph Brooks, Manchester, CT", InfoHTML, point); point = new GPoint(-122.1659, 37.4237); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Joseph McNamara, Stanford, CA
Research Fellow, Hoover Institution, Stanford University, CA
Retired Chief of Police, San Jose, CA
Former Chief of Police, Kansas City, MO
Former Police Officer, NYPD
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[47] = new Array(marker, "Joseph McNamara, Stanford, CA", InfoHTML, point); point = new GPoint(175.25390625, -40.53885152535464); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Julian White, Levin, New Zealand
Police
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[48] = new Array(marker, "Julian White, Levin, New Zealand", InfoHTML, point); point = new GPoint(-123.1182861328125, 49.2140089056539); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_black.png"; InfoHTML = "
Larry Campbell, Vancouver, BC
Former Mayor, Vancouver, BC.
Member, Senate of Canada
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[49] = new Array(marker, "Larry Campbell, Vancouver, BC", InfoHTML, point); point = new GPoint(-43.195084, -22.976734); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Maria Lucia Karam, Rio de Janeiro, Brazil
Retired Judge
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[50] = new Array(marker, "Maria Lucia Karam, Rio de Janeiro, Brazil", InfoHTML, point); point = new GPoint(-80.723656, 28.351049); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Marshall Frank, Rockledge, FL
Capt. (Retired), Metro-Dade Police Dept, Miami, FL
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[51] = new Array(marker, "Marshall Frank, Rockledge, FL", InfoHTML, point); point = new GPoint(-122.215622, 47.482067); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_green.png"; InfoHTML = "
Matt McCally, Renton, WA
Former State (WA) probation officer
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[52] = new Array(marker, "Matt McCally, Renton, WA", InfoHTML, point); point = new GPoint(-77.069091796875, 38.94552525820741); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Matthew Fogg, Washington, DC
\"Drug prohibition helps the US maintain a prison industrial complex.\"
US Federal Marshal
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[53] = new Array(marker, "Matthew Fogg, Washington, DC", InfoHTML, point); point = new GPoint(-98.47732543945312, 29.440195546792165); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_green.png"; InfoHTML = "
Michael Gilbert, San Antonio, TX
\"Prohibition makes no sense as a drug-control policy.\"
Former Corrections Officer, currently Assoc.Prof. Criminal Justice, U of Texas, San Antonio

" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[54] = new Array(marker, "Michael Gilbert, San Antonio, TX", InfoHTML, point); point = new GPoint(-105.59577941894531, 36.352739087358735); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Mike Jones, Ranchos de Taos, NM
Retired Deputy Police Chief, Gainesville, FL
\"The \'War on Drugs\' has undermined the credibility of law enforcement and government in general, as well as exacerbating the problem of corruption.\"
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[55] = new Array(marker, "Mike Jones, Ranchos de Taos, NM", InfoHTML, point); point = new GPoint(-76.2289810180664, 43.043801776082425); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_white.png"; InfoHTML = "
Mike Smithson, Camillus, NY
Speakers Bureau Coodinator
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[56] = new Array(marker, "Mike Smithson, Camillus, NY", InfoHTML, point); point = new GPoint(-76.629352, 39.622407); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Neill Franklin, White Hall, MD
Former Baltimore Police Dept.
Retired Maryland State Trooper

" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[57] = new Array(marker, "Neill Franklin, White Hall, MD", InfoHTML, point); point = new GPoint(-123.0935668945312, 48.54206876360649); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Norm Stamper, San Juan Islands, WA
\"The major police corruption scandals of the last serveral decades have had their roots in drug enforcements.\"
Retired Chief, Seattle (WA) Police Dept.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[58] = new Array(marker, "Norm Stamper, San Juan Islands, WA", InfoHTML, point); point = new GPoint(-72.4167, 19.0000); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_black.png"; InfoHTML = "
Patrick Elie, Haiti
Drug Czar, Haiti
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[59] = new Array(marker, "Patrick Elie, Haiti", InfoHTML, point); point = new GPoint(-2.710189819335937, 52.370568669179654); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Paul Whitehouse, Ludlow, Shropeshire, UK
Retired Chief Constable
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[60] = new Array(marker, "Paul Whitehouse, Ludlow, Shropeshire, UK", InfoHTML, point); point = new GPoint(-75.85029602050781, 42.93179328323594); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Peter Christ, Cazenovia, NY
Legalization simply means the elimination of \'Schedule I\'.  All other discsussion is about regulation.\"
Retired Police Captain, Tonowanda, NY
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[61] = new Array(marker, "Peter Christ, Cazenovia, NY", InfoHTML, point); point = new GPoint(-74.005806, 40.71463); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Peter Moskos, New York, NY
"If the war on drugs were winnable, we would already have won it.
Former Police Officer, Baltimore, MD
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[62] = new Array(marker, "Peter Moskos, New York, NY", InfoHTML, point); point = new GPoint(-80.60704, 28.083288); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Richard Amos, Melbourne, FL
"Every drug arrest creates another job opportunity."
Special Agent, US DEA, Retired
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[63] = new Array(marker, "Richard Amos, Melbourne, FL", InfoHTML, point); point = new GPoint(-72.10052490234375, 43.076913126087106); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_green.png"; InfoHTML = "
Richard van Wickler, Stoddard, NH
Superintendent, Cheshire County Corrections Department
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[64] = new Array(marker, "Richard van Wickler, Stoddard, NH", InfoHTML, point); point = new GPoint(-95.550339, 30.72295); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_green.png"; InfoHTML = "
Richard Watkins, Huntsville, TX
\"If we can\'t keep drugs out of maximum security prisons, how can we expect to keep them out of our schools?\"
Retired Senior Warden, Texas State Prison System.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[65] = new Array(marker, "Richard Watkins, Huntsville, TX", InfoHTML, point); point = new GPoint(-76.13285064697266, 43.13381279555054); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_white.png"; InfoHTML = "
Rick Ostrander, Syracuse, NY
Venue Booker
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[66] = new Array(marker, "Rick Ostrander, Syracuse, NY", InfoHTML, point); point = new GPoint(-98.124023, 29.702509); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Russ Jones, New Braunfels, TX
Former San Jose (CA) Police Dept.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[67] = new Array(marker, "Russ Jones, New Braunfels, TX", InfoHTML, point); point = new GPoint(-97.75351, 33.210411); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_green.png"; InfoHTML = "
Rusty White, Bridgeport, TX
\"Drugs are bad, but the Drug War is worse!\"

Former Corrections Officer

Former K-9 Narcotics dog trainer/handler


" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[68] = new Array(marker, "Rusty White, Bridgeport, TX", InfoHTML, point); point = new GPoint(-75.69099426269531, 45.43363548747066); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_black.png"; InfoHTML = "
Senator Larry Campbell
Former Mayor of Vancouver, member of RCMP, Coroner for BC.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[69] = new Array(marker, "Senator Larry Campbell", InfoHTML, point); point = new GPoint(-123.0619812011718, 49.321094036976454); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_white.png"; InfoHTML = "
Steve Finlay, North Vancouver, BC
Venue Booker
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[70] = new Array(marker, "Steve Finlay, North Vancouver, BC", InfoHTML, point); point = new GPoint(-97.794388, 32.443371); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Terry Nelson, Granbury, TX
\"After drugs are legalized, we can begin to educate out population how best to deal with drugs\"
Retired Dept. Homeland Security
Former US Border Partol Agent
Former US Customs Service
Former US Coast Guard
Currently on duty in Iraq
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[71] = new Array(marker, "Terry Nelson, Granbury, TX", InfoHTML, point); point = new GPoint(-74.62386131286621, 39.437518783247896); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Tim Datig, Egg Harbor Twp., NJ
Retired Chief of Police
\"The end result is nothing has changed.\"

" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[72] = new Array(marker, "Tim Datig, Egg Harbor Twp., NJ", InfoHTML, point); point = new GPoint(-96.7236328125, 43.54854811091286); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Tony Ryan, Sioux Falls, SD
\"The \'War on Drugs\' is a disaster for law enforcement.\"
Retired Denver (CO) Police Dept.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[73] = new Array(marker, "Tony Ryan, Sioux Falls, SD", InfoHTML, point); point = new GPoint(-122.656509, 49.103451); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Tony Smith, Langley, BC
\"Organized crime lobbies political representation to maintain the status quo.\"

Retired Police Officer, Vancouver, BC
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[74] = new Array(marker, "Tony Smith, Langley, BC", InfoHTML, point); point = new GPoint(-116.373756, 33.722031); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_blue.png"; InfoHTML = "
Walter Clark, Palm Desert, CA
Former Assistant Prosecutor
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[75] = new Array(marker, "Walter Clark, Palm Desert, CA", InfoHTML, point); point = new GPoint(-95.992332, 36.152988); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Wes E. Johnson, Tulsa, OK
Former Law Enforcement, Juvenile case worker
Currently criminal trial lawyer.
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[76] = new Array(marker, "Wes E. Johnson, Tulsa, OK", InfoHTML, point); point = new GPoint(-95.993334, 36.149745); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Wesley Johnson, Tulsa, OK
Former Police Officer
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[77] = new Array(marker, "Wesley Johnson, Tulsa, OK", InfoHTML, point); point = new GPoint(19.09423828125, 47.45780853075031); footerHtml = "
" + "
"; // Define Marker iconsm.image = "http://www.mapbuilder.net/img/icons/marker_20_red.png"; InfoHTML = "
Zsolt Nemeth, Budapest, Hungary
Deputy Commander, Hungarian Police Academy
" + footerHtml + "
"; marker = createMarker(point, InfoHTML, iconsm); map.addOverlay(marker); aLocations[78] = new Array(marker, "Zsolt Nemeth, Budapest, Hungary", InfoHTML, point); }