// JScript File

    ////////////////////////
    // begin data section //
    
    /************************************
    // data template - DO NOT ALTER ARRAY ORDERING
    // *** Leave indices 1-4 as nullstring when venue closed/relocated *** 
    
    ARRIDX_VENUE_VENUENAME = 0;
    ARRIDX_VENUE_EXTLINK = 1;   *** for venue websites only, not for events ************
    ARRIDX_VENUE_EMAILLINK = 2;
    ARRIDX_VENUE_MAPFILENAME = 3;
    ARRIDX_VENUE_VENUEDATA = 4;
    
    ARRVAL_NULLSTRING = "";

    arrVenues[arrVenues.length] = new Array(
        VENUE_VENUENAME,
        VENUE_EXTLINK | ARRVAL_NULLSTRING,
        VENUE_EMAILLINK | ARRVAL_NULLSTRING,
        VENUE_MAPFILENAME | ARRVAL_NULLSTRING,
        VENUE_VENUEDATA | ARRVAL_NULLSTRING
        );
    ************************************/

    function initVenueData() {
        window.top.ARRIDX_VENUE_VENUENAME = 0;
        window.top.ARRIDX_VENUE_EXTLINK = 1;
        window.top.ARRIDX_VENUE_EMAILLINK = 2;
        window.top.ARRIDX_VENUE_MAPFILENAME = 3;
        window.top.ARRIDX_VENUE_VENUEDATA = 4;
        window.top.ARRVAL_NULLSTRING = "";
    
// begin data section ////////////////////    
        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Stars Recreation Center",
    	    ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_starsrecreationcenter.gif",
            "155 Browns Valley Parkway<br/>"
	            + "Vacaville, CA 95688<br/>"
	            + "707.455.7827"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Discovery Bay Yacht Club",
    	    ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_discoverybayyachtclub.gif",
            "5871 Marina Road<br/>"
	            + "Discovery Bay, CA 94514<br/>"
	            + "925.634.1210"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "324 at Mel's",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_324.gif",
            "324 Virginia Street<br/>"
	            + "Vallejo CA 94590<br/>"
	            + "707.644.2999"
	        );
        
        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Crowne Plaza Hotel",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_crowneplazahotel.gif",
            "282 Almaden Boulevard<br/>"
                + "San Jose, CA 95113<br/>"
                + "877.898.1721"
	        );
        
        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Delta Breeze Consolidated Club",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_deltabreeze.gif",
            "400 Windward Drive<br/>"
	            + "Travis AFB, CA 94535<br/>"
	            + "707.437.3711"
	        );
    	    
        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "After Five Lounge &amp; Restaurant",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING
	        );
        
        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Vacaville American Legion",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_vacavilleamericanlegion.gif",
            "549 Merchant Street<br/>"
	            + "Vacaville, CA 95688<br/>"
	            + "707.447.6354"
	        );
    	    
        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Celebrity Ballroom",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_celebrityballroom.gif",
            "22 Hillcrest Drive<br/>"
	            + "Daly City, CA 94014<br/>"
	            + "650.756.2266"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Cheers",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_cheers.gif",
            "321 Merchant Street<br/>"
	            + "Vacaville, CA 95688<br/>"
	            + "707.451.4049"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Creekwalk Plaza",
    	    "http://www.creekwalk.com/",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "Corner of Main St. &amp; Davis St.<br/>"
	            + "Vacaville, CA (downtown)<br/>"
	            + "<br/>"
		        + "Contact:Cyndi Williamson<br/>"
	            + "707.449.5616"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Vallejo Municipal Marina",
    	    ARRVAL_NULLSTRING,
		    "marina@ci.vallejo.ca.us",
            "map_vallejomarina.gif",
            "42 Harbor Way<br/>"
	            + "Vallejo, CA<br/>"
	            + "Ph: 707.648.4370<br/>"
		        + "Fax: 707.648.4660"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Choices",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_choices.gif",
            "321 First Street<br/>"
	            + "Benicia, CA 94510<br/>"
	            + "707.746.8466"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Flamingo Hotel",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_flamingohotel.gif",
            "2777 4th Street<br/>"
	            + "Santa Rosa, CA 95405<br/>"
	            + "707.523.4745"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Verdi Club",
            "http://www.verdiclub.net/",
            ARRVAL_NULLSTRING,
            "map_verdiclub.gif",
            "2424 Mariposa Street<br/>"
	            + "San Francisco, CA 94110<br/>"
	            + "415.861.9199"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Radisson Hotel Sacramento",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_sacramentoradisson.png",
            "500 Leisure Lane<br/>"
	            + "Sacramento, CA 94401<br/>"
	            + "916.922.2020"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Corinthian Yacht Club",
            "http://www.cyc.org/home.shtml&ref=",
            ARRVAL_NULLSTRING,
            "map_corinthianyachtclub.gif",
            "43 Main Street<br/>"
	            + "Belvedere Tiburon, CA 94920<br/>"
	            + "415.435.4771"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Vinnie's Bar &amp; Grill",
            "http://www.vinniesbar.com",
            ARRVAL_NULLSTRING,
            "map_vinnies.png",
            "2045 Mount Diablo Street<br/>"
	            + "Concord, CA 94520<br/>"
	            + "925.685.9515"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Choi's",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_chois.gif",
            "117 Maritime Academy Drive<br/>"
	            + "Vallejo, CA 94590<br/>"
	            + "707.643.2012"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Country Club",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_sanramoncountryclub.gif",
            "23 Beta Court<br/>"
	            + "San Ramon, CA 94583<br/>"
	            + "925.838.1656"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Crockett Community Center",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_crockettcommunitycenter.gif",
            "850 Pomona Street<br/>"
	            + "Crockett, CA 94525<br/>"
	            + "510.787.2414"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Woody's Beach House &amp; Grill",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_woodysbeachhouseandgrill.gif",
            "5879 Marina Road<br/>"
	            + "Discovery Bay, CA 94514-9134<br/>"
	            + "209.605.3734"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Ding's Cocktail Lounge",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Downtown/Central Business District",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_centerforcreativearts.gif",
            "1000 Texas Street<br/>"
	            + "Fairfield, CA 94533<br/>"
                + "<br/>"
	            + "Contact:Emily Low, Coordinator<br/>"
                + "707.422.0103"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Doubletree Hotel Rohnert Park",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_doubletreerohnertpark.gif",
            "1 Doubletree Drive<br/>"
	            + "Rohnert Park, CA 94928<br/>"
                + "707.584.5466"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Embassy Suites Napa Valley",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_embassysuitesnapa.gif",
            "1075 California Boulevard<br/>"
	            + "Napa, CA 94559<br/>"
                + "707.253.9540"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Fairfield Community Center",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_fairfieldcommunitycenter.gif",
            "1000 Webster Street<br/>"
	            + "Fairfield, CA 94533<br/>"
                + "707.428.7435"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Fairfield Holiday Inn",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_fairfieldholidayinn.gif",
            "1350 Holiday Lane<br/>"
	            + "Fairfield, CA 94534<br/>"
                + "707.422.4111"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Fillmore Jazz Preservation District",
            ARRVAL_NULLSTRING,
            "sfjuneteenth@sbcglobal.net",
            "map_fillmorejazzpreservationdistrict.gif",
            "Stage #1 (Fillmore and Turk Sts)<br/>"
	            + "San Francisco, CA 95113<br/>"
                + "<br/>"
                + "Contact: San Francisco Juneteenth Fillmore Live<br/>"
                + "African American Art &amp; Culture Complex<br/>"
                + "762 Fulton Street, 3rd Floor<br/>"
                + "San Francisco, California 94102<br/>"
                + "Phone: 415.931.2729<br/>"
                + "Fax: 415.931.3854"
            );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Fairmont Hotel San Jose",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_fairmonthotelsanjose.gif",
            "170 South Market Street<br/>"
	            + "San Jose, CA 95113<br/>"
                + "408.998.1900"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Fire Falls",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_firefalls.gif",
            "555 Main Street<br/>"
	            + "Vacaville, CA 95688<br/>"
                + "707.445.0512"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Gentleman Jim's",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_gentlemanjims.gif",
            "1324 Lincoln Road East<br/>"
	            + "Vallejo, CA 94591<br/>"
                + "707.642.0234"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Green Valley Country Club",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_greenvalleycountryclub.gif",
            "35 Country Club Drive<br/>"
	            + "Suisun City, CA 94585<br/>"
                + "707.864.1101"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Grizzly Bay Brewery Company",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_grizzlybaybrewingcompany.gif",
            "325 Main Street<br/>"
	            + "Suisun, CA 94585<br/>"
                + "707.434.8031"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Jefferson Street Mansion",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_jeffersonstreetmansion.gif",
            "1063 Jefferson Street<br/>"
	            + "Benicia, CA 94510<br/>"
                + "707.746.0684"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Jesse Bethel High School",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_jessebethelhighschool.gif",
            "1800 Ascot Parkway<br/>"
	            + "Vallejo, CA 94591<br/>"
                + "707.556.5700"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Lou's Junction",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Loyal Order Of Moose",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_vacavillemooselodge.png",
            "6585 Gibson Canyon Road<br/>"
	            + "Vacaville, CA 95688<br/>"
                + "707.448.1122"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Monte Carlo Restaurant &amp; Bar",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_montecarlo.png",
            "1705 Yosemite Avenue<br/>"
	            + "San Francisco, CA 94124<br/>"
                + "415.822.7338"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Popi Lounge",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_popilounge.gif",
            "3059 Hopyard Road #E<br/>"
	            + "Pleasanton, CA 94588<br/>"
                + "925.462.7674"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Radisson Hotel Concord",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_sheratonconcord.gif",
            "<span style=\"font-size:smaller; font-style:italic;\">(formerly Sheraton Concord Hotel)</span><br/>"
	            + "45 John Glenn Drive<br/>"
	            + "Concord, CA 94520<br/>"
                + "925.825.7700"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Rancho Solano Country Club",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_ranchosolano.gif",
            "3250 Rancho Solano Parkway<br/>"
	            + "Fairfield, CA 94533<br/>"
                + "707.427.8900"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "San Mateo Golf Course",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_sanmateogolfcourse.gif",
            "1700 Coyote Point Drive<br/>"
	            + "San Mateo, CA 94401<br/>"
                + "650.522.4653"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Sheraton Palo Alto",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_paloaltosheraton.gif",
            "625 El Camino Real<br/>"
	            + "Palo Alto, CA 94301<br/>"
                + "650.328.2800"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Solano County Fairgrounds",
            "http://www.scfair.com/",
            ARRVAL_NULLSTRING,
            "map_solanocountyfairgrounds.gif",
            "900 Fairgrounds Drive<br/>"
	            + "Vallejo, CA 94589-4003<br/>"
                + "Ph: 707.644.4401<br/>"
                + "Fax: 707.642.7947"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Sonoma County Fairgrounds",
            "http://www.sonomacountyfair.com/",
            ARRVAL_NULLSTRING,
            "map_sonomacountyfairgrounds.gif",
            "1350 Bennett Valley Road<br/>"
	            + "Santa Rosa, CA 95402<br/>"
                + "Ph: 707.545.4200<br/>"
                + "Fax: 707.573.9342"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Reserve At Spanos Park",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_spanosparkreserve.png",
            "6301 W. Eight Mile Road<br/>"
	            + "Stockton, CA 95219<br/>"
                + "209.477.4653"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Tabor Park",
            ARRVAL_NULLSTRING,
            "rreich@%20ci.fairfield.ca.us",
            "map_taborpark.gif",
            "E. Tabor &amp; Blossom<br/>"
	            + "Fairfield, CA<br/>"
	            + "<br/>"
	            + "Contact: Arts and Community Events<br/>"
                + "Ph: 707.428.7662<br/>"
                + "Fax: 428-0618"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Teeter's Sportsbar &amp; Grill",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_teetersbarandgrill.gif",
            "905 Lincoln Road East<br/>"
	            + "Vallejo, CA 94591<br/>"
	            + "707.642.4413"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Vacaville Opera House",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_vacavilleoperahouse.gif",
            "560 Main Street #E<br/>"
	            + "Vacaville, CA 95688<br/>"
	            + "707.453.0393"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Veterans Memorial Building",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_veteransmemorialbuilding.gif",
            "427 Main Street<br/>"
	            + "Suisun, CA 94585<br/>"
	            + "707.428.9663"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Veterans Memorial Hall",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_veteransmemorialhall.png",
            "1150 1st Street<br/>"
	            + "Benicia, CA 94510<br/>"
	            + "707.745.1769"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Antioch VFW",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_vfwantioch.gif",
            "815 Fulton Shipyard Road<br/>"
	            + "Antioch, CA 94509<br/>"
	            + "925.757.2010"
	        );

        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Embassy Suites San Rafael",
            ARRVAL_NULLSTRING,
            ARRVAL_NULLSTRING,
            "map_sanrafaelembassysuites.gif",
            "101 McInnis Parkway<br/>"
	            + "San Rafael, CA 94903<br/>"
	            + "415.499.9222"
	        );


        window.top.arrVenues[window.top.arrVenues.length] = new Array(
            "Sons of Italy",
            "http://sonsofitalyca.org",
            ARRVAL_NULLSTRING,
            "map_sonsofitaly.png",
            "5051 Mission Street<br/>"
	            + "San Francisco, CA 94112<br/>"
	            + "415.239.7667"
	        );

// end data section ////////////////////

// begin format/ordering section ///////

        for ( var x=0; x<arrVenues.length; x++ ) {
            for ( var y=0; y<arrVenues[x].length; y++ ) {
                arrVenues[x][y] = arrVenues[x][y].replace(/'/g,"&#39;");
            }
        }
	    window.top.arrVenues.sort();
    }
// end format/ordering section ///////

