
    // eastern/new century routes

routeFunctions.push(easternNewCenturyGetRoutes);
function easternNewCenturyGetRoutes() {

    var eastern = new Operator('Eastern Travel', 'www.easternshuttle.com', 'eastern.gif', '1.5', 'http://www.yelp.com/biz/eastern-travel-and-tour-inc-washington', true, true, false);
    var newCentury = new Operator('New Century', 'www.2000coach.com', 'newcentury.gif', '2.0', 'http://www.yelp.com/biz/new-century-travel-washington', true, false, false);

    var easternNewYorkChinatown = new Location('Chinatown, New York, NY', 'http://maps.google.com/?q=' + encodeURIComponent('28 Allen Street, New York, NY 10002'), NEW_YORK_CHINATOWN);
    var newCenturyNewYorkChinatown = new Location('Chinatown, New York, NY', 'http://maps.google.com/?q=' + encodeURIComponent('86 Allen Street, New York, NY 10002'), NEW_YORK_CHINATOWN);
    var easternPhiladelphiaChinatown = new Location('Chinatown, Philadelphia, PA', 'http://maps.google.com/?q=' + encodeURIComponent('1013 Arch Street, Philadelphia, PA 19107'), PHILADELPHIA_CHINATOWN);
    var newCenturyPhiladelphiaChinatown = new Location('Chinatown, Philadelphia, PA', 'http://maps.google.com/?q=' + encodeURIComponent('55 N 11th Street, Philadelphia, PA 19107'), PHILADELPHIA_CHINATOWN);
    var easternWashingtonChinatown = new Location('Chinatown, Washington, DC', 'http://maps.google.com/?q=' + encodeURIComponent('715 H Street NW, Washington, DC 20001'), WASHINGTON_CHINATOWN);
    var newCenturyWashingtonChinatown = new Location('Chinatown, Washington, DC', 'http://maps.google.com/?q=' + encodeURIComponent('513 H Street NW, Washington, DC 20001'), WASHINGTON_CHINATOWN);

    var routes = new Array();

    routes.push(new Route(eastern, easternNewYorkChinatown, easternPhiladelphiaChinatown));

    routes.push(new Route(newCentury, newCenturyNewYorkChinatown, newCenturyPhiladelphiaChinatown));

    routes.push(new Route(eastern, easternPhiladelphiaChinatown, easternNewYorkChinatown));

    routes.push(new Route(newCentury, newCenturyPhiladelphiaChinatown, newCenturyNewYorkChinatown));

    routes.push(new Route(eastern, easternPhiladelphiaChinatown, easternWashingtonChinatown));

    routes.push(new Route(newCentury, newCenturyPhiladelphiaChinatown, newCenturyWashingtonChinatown));

    routes.push(new Route(eastern, easternWashingtonChinatown, easternPhiladelphiaChinatown));

    routes.push(new Route(newCentury, newCenturyWashingtonChinatown, newCenturyPhiladelphiaChinatown));

    return routes;
}


