-
Notifications
You must be signed in to change notification settings - Fork 0
/
gsmap.html
1902 lines (1901 loc) · 83.6 KB
/
gsmap.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- saved from url=(0060)http://www.castanet.net/garagesales/xml_gs.php?day=%22sat%22 -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body><rows>
<row id="6488">
<id>6488</id>
<highlight>1</highlight>
<title><![CDATA[Moving sale]]></title>
<descr><!--[CDATA[House hold furniture(dinning room set, corner stands etc), patio furniture and lots of garage items and tons of all kind of tools from mechanics to house renovations. FR clothing and safety supplies]]--></descr>
<start_date>Thu, Aug 7 - 12:00 PM</start_date>
<end_date>Sun, Aug 10 - 8:00 PM</end_date>
<address><!--[CDATA[170 Keithley Road]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9002966]]--></lat>
<long><!--[CDATA[-119.38794619999999]]--></long>
<photo>6488-1-1.jpg</photo>
<images>
<img>6488-1-1.jpg
<img>6488-2-1.jpg
<img>6488-3-2.jpg
<img>6488-4-2.jpg
</images>
</row>
<row id="6552">
<id>6552</id>
<highlight>1</highlight>
<title><![CDATA[Black Mountain Garage Sale]]></title>
<descr><!--[CDATA[Garage sale in Black Mountain area. 100's of CD's and DVD's for sale. Plenty of household items. Stereos and surround sound system. Daybed frame. Children's toys, games and books. Kitchenware...]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 PM</end_date>
<address><!--[CDATA[1516 Longley Crescent (Black Mountain)]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8729244]]--></lat>
<long><!--[CDATA[-119.35648750000001]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6566">
<id>6566</id>
<highlight>1</highlight>
<title><![CDATA[Down-sizing Garage Sale]]></title>
<descr><!--[CDATA[Electric and gas lawnmowers, patio chairs, tools, radial arm saw, tools, compressor, almost new Christmas tree and decorations, barbecue, books, solid teak bookshelf and much more!]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 PM</end_date>
<address><!--[CDATA[4620 Mission Ridge Court (Crawford Estates)]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8879519]]--></lat>
<long><!--[CDATA[-119.49601059999998]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6583">
<id>6583</id>
<highlight>1</highlight>
<title><![CDATA[Garage sale]]></title>
<descr><!--[CDATA[Sat 10 - 2 one day only<br /-->
<br>
No baby toys or clothes<br>
Tools, collectibles, household items, golf clubs 1 never installed white vinyl window 3X5, 1 2x4 installed 1 month.<br>
Ladies shoes many to...]]></descr>
<start_date>Sat, Aug 9 - 10:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[3501 Gates Rd]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8370079]]--></lat>
<long><!--[CDATA[-119.66984709999997]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6591">
<id>6591</id>
<highlight>1</highlight>
<title><![CDATA[Daycare related to adult fitness, ocean surf board, to pizza oven to free items]]></title>
<descr><!--[CDATA[Getting house ready to put it on the market garage sale:Daycare related items from tables-chairs, leggo, dress-up clothes, playpens, easel, puzzles, books etc. to Adult fitness equipment, ocean...]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 12:00 PM</end_date>
<address><!--[CDATA[656 Berk Court]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.814965]]--></lat>
<long><!--[CDATA[-119.4851056]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6597">
<id>6597</id>
<highlight>1</highlight>
<title><![CDATA[Moving & Garage Sale]]></title>
<descr><!--[CDATA[High quality Queen bedroom suite, 5 like new chrome &amp; leather chairs, patio furniture, outdoor planters, Weber BBQ, executive partner high back office chair, desk, solid wood coffee...]]--></descr>
<start_date>Sat, Aug 9 - 9:00 AM</start_date>
<end_date>Sun, Aug 10 - 3:00 PM</end_date>
<address><!--[CDATA[1456 Gregory Rd]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8448065]]--></lat>
<long><!--[CDATA[-119.57652200000001]]--></long>
<photo>6597-1-4.jpg</photo>
<images>
<img>6597-1-4.jpg
<img>6597-2-3.jpg
<img>6597-3-3.jpg
<img>6597-4-3.jpg
<img>6597-5-3.jpg
</images>
</row>
<row id="6598">
<id>6598</id>
<highlight>1</highlight>
<title><![CDATA[Garage sale]]></title>
<descr><!--[CDATA[Household items, kids toys, strollers, electronics, tires, DVDs, games, various other items.<br /-->
]]></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 PM</end_date>
<address><!--[CDATA[1698 Lindsay Drive]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.903201]]--></lat>
<long><!--[CDATA[-119.46131450000001]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6631">
<id>6631</id>
<highlight>1</highlight>
<title><![CDATA[MOVING SALE]]></title>
<descr><!--[CDATA[Downsizing from Crawford Estates, furniture, pet supplies, bikes, sports and exercise equipment. Everything under 10 years of age]]--></descr>
<start_date>Sat, Aug 9 - 9:00 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 PM</end_date>
<address><!--[CDATA[WOODRIDGE COURT]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.808494]]--></lat>
<long><!--[CDATA[-119.45799569999997]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6239">
<id>6239</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale]]></title>
<descr><!--[CDATA[Wood burning stove, older fishing boat (best offer takes it! I want it GONE) , wooden stools, Home decor ( pillows, blankets, vases, picture frames, big mirror, candle holder etc) gazelle exercise...]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 PM</end_date>
<address><!--[CDATA[4636 Princeton Ave ]]--></address>
<city><!--[CDATA[Peachland]]--></city>
<lat><!--[CDATA[49.7652959]]--></lat>
<long><!--[CDATA[-119.75057620000001]]--></long>
<photo>6239-3-1.jpg</photo>
<images>
<img>6239-3-1.jpg
<img>6239-4-1.jpg
<img>6239-5-1.jpg
<img>6239-6-1.jpg
</images>
</row>
<row id="6450">
<id>6450</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale in the Lakes in Winfield]]></title>
<descr><!--[CDATA[Garage Sale - misc. items, electronics, household, etc.]]--></descr>
<start_date>Sat, Aug 9 - 8:30 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 PM</end_date>
<address><!--[CDATA[13061 East Ridge Dr. Lake Country, B.C.]]--></address>
<city><!--[CDATA[Lake Country]]--></city>
<lat><!--[CDATA[50.0732996]]--></lat>
<long><!--[CDATA[-119.41236939999999]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6473">
<id>6473</id>
<highlight>0</highlight>
<title><![CDATA[Time to Empty the Basement! FREE COFFEE!]]></title>
<descr><!--[CDATA[First clean-out we've had since the kids were small!!! Tons of top-quality toys - wooden toys, waldorf-type toys, games, puzzles... PLUS kitchen gadgets, tools, skis, bikes, ETC! PLUS some...]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[607 Curtis Road]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9286263]]--></lat>
<long><!--[CDATA[-119.41700479999997]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6474">
<id>6474</id>
<highlight>0</highlight>
<title><![CDATA[Multi-Family Garage Sale]]></title>
<descr><!--[CDATA[Multi-family Garage Sale on Saturday, Aug. 9th starting at 8:00 am. NO early birds please. Wide range of items.]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[2430 Chieftain Road, Westbank]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8409167]]--></lat>
<long><!--[CDATA[-119.62687640000001]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6480">
<id>6480</id>
<highlight>0</highlight>
<title><![CDATA[Single home garage sale]]></title>
<descr><!--[CDATA[Lots of misc. items. Please come and browse. You are sure to find something you like.]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 AM</end_date>
<address><!--[CDATA[2151 Michelle Cres.]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8748946]]--></lat>
<long><!--[CDATA[-119.53609319999998]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6511">
<id>6511</id>
<highlight>0</highlight>
<title><![CDATA[Community Garage sale]]></title>
<descr><!--[CDATA[Multiple homes in our neighbourhood are putting items for sale in their driveways. Family oriented neighbourhood with other items to choose from. Great loop to drive around and see what everyone...]]--></descr>
<start_date>Sat, Aug 9 - 9:30 AM</start_date>
<end_date>Sat, Aug 9 - 3:00 PM</end_date>
<address><!--[CDATA[3110 Shetland Road]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9222001]]--></lat>
<long><!--[CDATA[-119.40104029999997]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6513">
<id>6513</id>
<highlight>0</highlight>
<title><![CDATA[Family ]]></title>
<descr><!--[CDATA[rocking chairs,, house hold items, clothing, Material, foosball table $200 firm, tread mill $100 obo]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 1:00 PM</end_date>
<address><!--[CDATA[205 Nickel Rd]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8896792]]--></lat>
<long><!--[CDATA[-119.4125732]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6514">
<id>6514</id>
<highlight>0</highlight>
<title><![CDATA[GARAGE SALE ]]></title>
<descr><!--[CDATA[FABULOUS GARAGE SALE FULL OF BABY CLOTHES, MEN AND WOMANS CLOTHES, KITCHEN SUPPLIES, TOYS, FURNITURE AND MORE. COME CHECK IT OUT! 8AM - NOON.]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 12:00 PM</end_date>
<address><!--[CDATA[105-952 Lawson avenue - Kelowna BC]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8873385]]--></lat>
<long><!--[CDATA[-119.48108230000003]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6517">
<id>6517</id>
<highlight>0</highlight>
<title><![CDATA[HUGE MOVING SALE!!! MOVING TO ALBERTA!]]></title>
<descr><!--[CDATA[HUGE MOVING SALE!!!!<br /-->
<br>
OUT DOOR FURNITURE, IN DOOR FURNITURE, COFFEE TABLES, LAMPS, HOME ACCESSORIES.<br>
BABY/TODDLER CLOTHING AND TOYS. BABY ACCESSORIES. ADULT CLOTHING, LADIES MOTOR BIKE JACKET....]]></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 1:00 PM</end_date>
<address><!--[CDATA[3412 Fairview Crt]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.84009090000001]]--></lat>
<long><!--[CDATA[-119.6625783]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6519">
<id>6519</id>
<highlight>0</highlight>
<title><![CDATA[Grampa and Gramma are Down sizing , everything must go]]></title>
<descr><!--[CDATA[Shop Tools, garden stuff, household goodies... we don't want to move it.]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 PM</end_date>
<address><!--[CDATA[2214 Sundance Court, West Kelowna]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8493207406355]]--></lat>
<long><!--[CDATA[-119.60809631349184]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6520">
<id>6520</id>
<highlight>0</highlight>
<title><![CDATA[Grampa and Gramma are downsizing and don't want to move it]]></title>
<descr><!--[CDATA[shop tools garden stuff and household goodies]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 PM</end_date>
<address><!--[CDATA[2214 Sundance Crt. West Kelowna]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.84931382268188]]--></lat>
<long><!--[CDATA[-119.60813922883608]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6521">
<id>6521</id>
<highlight>0</highlight>
<title><![CDATA[CD's and Vinyl Records]]></title>
<descr><!--[CDATA[Assorted easy listening CD's......$3.00 ea<br /-->
Assorted easy listening Records....$1.00 ea (Over 300 to choose from)]]></descr>
<start_date>Sat, Aug 9 - 9:00 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 PM</end_date>
<address><!--[CDATA[1025 Cameron Ave]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.869953]]--></lat>
<long><!--[CDATA[-119.47916880000002]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6522">
<id>6522</id>
<highlight>0</highlight>
<title><![CDATA[Yard sale!!]]></title>
<descr><!--[CDATA[Everything from Christmas decorations to toys from the 80's, and everything in between!!!!<br /-->
NO EARLY BIRDS]]></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[448 Young st.]]--></address>
<city><!--[CDATA[Penticton]]--></city>
<lat><!--[CDATA[49.4945391]]--></lat>
<long><!--[CDATA[-119.5986125]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6523">
<id>6523</id>
<highlight>0</highlight>
<title><![CDATA[Moving Sale]]></title>
<descr><!--[CDATA[moving sale with household goods, tools, garden tools, sporting goods, kids toys and clothes, executive desk and credenza (Kimball), garage shelving. ]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 4:00 PM</end_date>
<address><!--[CDATA[771 Westpoint Dr. ]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8230859]]--></lat>
<long><!--[CDATA[-119.48153279999997]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6524">
<id>6524</id>
<highlight>0</highlight>
<title><![CDATA[Moving Sale]]></title>
<descr><!--[CDATA[Moving sale with lots of tools and household items]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 8:00 AM</end_date>
<address><!--[CDATA[4885 Warbler Court]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8060198]]--></lat>
<long><!--[CDATA[-119.4754284]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6525">
<id>6525</id>
<highlight>0</highlight>
<title><![CDATA[Large Garage Sale ]]></title>
<descr><!--[CDATA[Big and Small items lots of great bargains.]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[14 Blarney Place, Killiney Beach, Westside Road]]--></address>
<city><!--[CDATA[Vernon]]--></city>
<lat><!--[CDATA[50.231755]]--></lat>
<long><!--[CDATA[-119.452451]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6526">
<id>6526</id>
<highlight>0</highlight>
<title><![CDATA[DOWN-SIZING GARAGE SALE]]></title>
<descr><!--[CDATA[Down-sizing - Garage Sale. Household items, yard tools, sporting goods, tools, and miscl. items. <br /-->
Follow signs up Hwy 33, left on Loseth Road then 2nd Left on Wilmot Ave.]]></descr>
<start_date>Fri, Aug 8 - 9:00 AM</start_date>
<end_date>Sat, Aug 9 - 3:00 PM</end_date>
<address><!--[CDATA[1395 Wilmot Ave]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.871254]]--></lat>
<long><!--[CDATA[-119.36005060000002]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6527">
<id>6527</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale!]]></title>
<descr><!--[CDATA[Electronics, Toys, Clothes (new), Comics, Bikes/Skate/XC Ski, Light tools, Movies, and more. ]]--></descr>
<start_date>Sat, Aug 9 - 8:30 AM</start_date>
<end_date>Sun, Aug 10 - 2:00 PM</end_date>
<address><!--[CDATA[119-1050 Springfield Rd.]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8768719999999]]--></lat>
<long><!--[CDATA[-119.47897005980224]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6530">
<id>6530</id>
<highlight>0</highlight>
<title><![CDATA[Garage and estate sale]]></title>
<descr><!--[CDATA[Furniture and household items. No early birds please]]--></descr>
<start_date>Sat, Aug 9 - 8:30 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 PM</end_date>
<address><!--[CDATA[278 Mathison Pl.]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.87854369999999]]--></lat>
<long><!--[CDATA[-119.49779280000001]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6534">
<id>6534</id>
<highlight>0</highlight>
<title><![CDATA[Large multi-family Garage sale]]></title>
<descr><!--[CDATA[Something for everyone!! Come join the fun!!]]--></descr>
<start_date>Sat, Aug 9 - 9:00 AM</start_date>
<end_date>Sat, Aug 9 - 3:00 PM</end_date>
<address><!--[CDATA[624 Cassiar Crescent]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9058451]]--></lat>
<long><!--[CDATA[-119.42463880000003]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6536">
<id>6536</id>
<highlight>0</highlight>
<title><![CDATA[getting ready to move sale]]></title>
<descr><!--[CDATA[bookcase, cabinet, coffee table, small aquarium and filter, pond filter, ships wheel, lawn lounger, garden trolley, books, records, tools, suitcases, large wine rack, pictures, etc]]--></descr>
<start_date>Sat, Aug 9 - 8:30 AM</start_date>
<end_date>Sat, Aug 9 - 12:30 PM</end_date>
<address><!--[CDATA[3015 spruce drive]]--></address>
<city><!--[CDATA[Naramata]]--></city>
<lat><!--[CDATA[49.5879621]]--></lat>
<long><!--[CDATA[-119.57799840000001]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6537">
<id>6537</id>
<highlight>0</highlight>
<title><![CDATA[getting ready to move sale]]></title>
<descr><!--[CDATA[bookcase, cabinet, coffee table, small aquarium and filter, pond filter, ships wheel, lawn lounger, garden trolley, books, records, tools, suitcases, large wine rack, pictures, etc]]--></descr>
<start_date>Sat, Aug 9 - 8:30 AM</start_date>
<end_date>Sat, Aug 9 - 12:30 PM</end_date>
<address><!--[CDATA[3015 spruce drive]]--></address>
<city><!--[CDATA[Naramata]]--></city>
<lat><!--[CDATA[49.5879621]]--></lat>
<long><!--[CDATA[-119.57799840000001]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6538">
<id>6538</id>
<highlight>0</highlight>
<title><![CDATA[Huge Coldstream Garage Sale Saturday Aug. 9th 9:00AM - 2:00PM]]></title>
<descr><!--[CDATA[Lots of cool items including an inflatable double waterslide, inflatable bounce house, new poles and netting for 14' trampoline, set of 6 outdoor dining chairs plus 2 matching fold-able chairs, 5...]]--></descr>
<start_date>Sat, Aug 9 - 9:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[8409 Kalavista Drive]]--></address>
<city><!--[CDATA[Coldstream]]--></city>
<lat><!--[CDATA[50.2284521]]--></lat>
<long><!--[CDATA[-119.26387269999998]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6539">
<id>6539</id>
<highlight>0</highlight>
<title><![CDATA[Ongoing sale of household dishes, pots & pans & everyday usefull stuff.]]></title>
<descr><!--[CDATA[Loads of material & craft items suitable for quilting projects. Lots of average size clothing, some imbroidery, pictures, curtains, hitches, weights, & many treasures you just can't do...]]--></descr>
<start_date>Tue, Aug 5 - 9:00 AM</start_date>
<end_date>Sun, Aug 31 - 6:00 PM</end_date>
<address><!--[CDATA[5040 princeton ave, peachland, bc]]--></address>
<city><!--[CDATA[Peachland]]--></city>
<lat><!--[CDATA[49.7535463]]--></lat>
<long><!--[CDATA[-119.77358420000002]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6541">
<id>6541</id>
<highlight>0</highlight>
<title><![CDATA[Multi-Family Garage Sale]]></title>
<descr><!--[CDATA[Variety of items for sale: Household Goods, Wicker, Saws & Sanders, Tools, Sporting Goods, Books, Wood Chipper, Furniture and much more. "No early birds please."]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[10679 & 10684 Bonnie Drive]]--></address>
<city><!--[CDATA[Lake Country]]--></city>
<lat><!--[CDATA[50.03795239999999]]--></lat>
<long><!--[CDATA[-119.3909157]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6543">
<id>6543</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale / Moving Sale]]></title>
<descr><!--[CDATA[All different kinds of things, such as table with leaf and 4 chairs (chairs do not match the table). Also, lots of kids stuff, including a Radio Flyer spring horse and a whole tub of Zuzu pets with...]]--></descr>
<start_date>Sat, Aug 9 - 9:00 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 PM</end_date>
<address><!--[CDATA[118 Vintage Blvd, Okanagan Falls]]--></address>
<city><!--[CDATA[Okanagan Falls]]--></city>
<lat><!--[CDATA[49.39837044343275]]--></lat>
<long><!--[CDATA[-119.55840382000735]]--></long>
<photo>6543-1-1.jpg</photo>
<images>
<img>6543-1-1.jpg
<img>6543-2-1.jpg
<img>6543-3-1.jpg
<img>6543-4-1.jpg
<img>6543-5-1.jpg
<img>6543-6-2.jpg
<img>6543-7-2.jpg
<img>6543-8-2.jpg
<img>6543-9-2.jpg
<img>6543-10-2.jpg
</images>
</row>
<row id="6544">
<id>6544</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale]]></title>
<descr><!--[CDATA[Furniture, Tools, Patio Furniture, Decorator Items, Downsizing sale. Big Variety. Saturday only.]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[3895 Angus Drive]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8226569]]--></lat>
<long><!--[CDATA[-119.62057720000001]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6545">
<id>6545</id>
<highlight>0</highlight>
<title><![CDATA[MULTI-FAMILY Garage Sale!]]></title>
<descr><!--[CDATA[Multi Family Garage Sale on Saturday August 9th from 8:30am-1:30pm. NO early birds please. <br /-->
Baby stuff (cloth diapers, bottles, teething toys, crib, bumper pads etc.)<br>
Kids toys (lego, duplo, kids...]]></descr>
<start_date>Sat, Aug 9 - 8:30 AM</start_date>
<end_date>Sat, Aug 9 - 1:30 PM</end_date>
<address><!--[CDATA[3040 Sageview Road]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8526221]]--></lat>
<long><!--[CDATA[-119.63158470000002]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6546">
<id>6546</id>
<highlight>0</highlight>
<title><![CDATA[Yard Sale ]]></title>
<descr><!--[CDATA[Lots of books, DVD's, Xbox 360 games, household and kitchen items, pictures, etc. Low prices truly just want to reduce 'stuff' our small place. Clothes and shoes - think back to school. ]]--></descr>
<start_date>Sat, Aug 9 - 9:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 AM</end_date>
<address><!--[CDATA[1118 Brookside Avenue, Kelowna ]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.87834369999999]]--></lat>
<long><!--[CDATA[-119.47636640000002]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6547">
<id>6547</id>
<highlight>0</highlight>
<title><![CDATA[Driveway Sale! Downsizing!]]></title>
<descr><!--[CDATA[We have quite a variety of things for sale! Some examples are tools, deep freeze, small kitchen appliances, tv stands, desks, dishes, kids toys and bikes, clothing, etc. NO EARLY BIRDS PLEASE!]]--></descr>
<start_date>Sat, Aug 9 - 9:00 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 PM</end_date>
<address><!--[CDATA[3389 McQueen Road]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8405333]]--></lat>
<long><!--[CDATA[-119.66498519999999]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6548">
<id>6548</id>
<highlight>0</highlight>
<title><![CDATA[Garage and Estate sale]]></title>
<descr><!--[CDATA[Lots of furniture, pictures, dishes, collectibles. Everything must go.]]--></descr>
<start_date>Sat, Aug 9 - 7:30 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 PM</end_date>
<address><!--[CDATA[560 Glenmeadows Road]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9082285]]--></lat>
<long><!--[CDATA[-119.45547269999997]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6549">
<id>6549</id>
<highlight>0</highlight>
<title><![CDATA[Garage and Estate sale]]></title>
<descr><!--[CDATA[Dining room suite, end tables, pictures, collectibles, leather recliner, wardrobe, dishes, pictures.<br /-->
]]></descr>
<start_date>Sat, Aug 9 - 7:30 AM</start_date>
<end_date>Sat, Aug 9 - 12:15 PM</end_date>
<address><!--[CDATA[560 Glenmeadows Rd]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9082285]]--></lat>
<long><!--[CDATA[-119.45547269999997]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6550">
<id>6550</id>
<highlight>0</highlight>
<title><![CDATA[Anti-hoarding garage sale]]></title>
<descr><!--[CDATA[Sat and Sun: 8 am to 1:30 pm (too hot in our front yard after that) Linens, books, framed pictures, bread maker, grill, some craft supplies, gift wrap, dog house, a few camping items, all the...]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 1:30 PM</end_date>
<address><!--[CDATA[3343 Wildwood Road]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8614197]]--></lat>
<long><!--[CDATA[-119.43892249999999]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6553">
<id>6553</id>
<highlight>0</highlight>
<title><![CDATA[Garage sale]]></title>
<descr><!--[CDATA[Clothes, toys, furniture, dishes, electronics, swimming pool and more...]]--></descr>
<start_date>Sat, Aug 9 - 8:30 AM</start_date>
<end_date>Sat, Aug 9 - 2:30 PM</end_date>
<address><!--[CDATA[4502 16th st]]--></address>
<city><!--[CDATA[Vernon]]--></city>
<lat><!--[CDATA[50.27820680000001]]--></lat>
<long><!--[CDATA[-119.2525273]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6554">
<id>6554</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale!]]></title>
<descr><!--[CDATA[Stop on by; household items, garage items, tools, patio set, laundry bases, and much more.]]--></descr>
<start_date>Sat, Aug 9 - 7:00 AM</start_date>
<end_date>Sat, Aug 9 - 3:00 PM</end_date>
<address><!--[CDATA[285 McTavish Rd, Kelowna, BC]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9210256]]--></lat>
<long><!--[CDATA[-119.44320579999998]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6555">
<id>6555</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale]]></title>
<descr><!--[CDATA[17806 Matsu Drive<br /-->
Summerland, BC<br>
Saturday Aug 9<br>
8AM to noon<br>
No early birds please!]]></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 PM</end_date>
<address><!--[CDATA[17806 Matsu Drive, Summerland, BC]]--></address>
<city><!--[CDATA[Summerland]]--></city>
<lat><!--[CDATA[49.62076326011424]]--></lat>
<long><!--[CDATA[-119.66878653967285]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6556">
<id>6556</id>
<highlight>0</highlight>
<title><![CDATA[MULTIFAMILY Garage/Moving Sale. 697 Thorneloe Road - August 9 & 10 ( 8am to 2pm)]]></title>
<descr><!--[CDATA[Garage/Moving sale- Furniture - Bedroom set - (blonde colour), Sofa and 2 Chairs, Garden wicker chair, Garden blower, BBQ ( used 1 season only), Good Kitchen dinnerware, and complete as new kitchen...]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 2:00 PM</end_date>
<address><!--[CDATA[697 Thorneloe Road]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8121471]]--></lat>
<long><!--[CDATA[-119.48308550000002]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6557">
<id>6557</id>
<highlight>0</highlight>
<title><![CDATA[BIG MOVING SALE!!!!!]]></title>
<descr><!--[CDATA[WE ARE MOVING AND CAN ONLY BRING 1/4 OF WHAT WE OWN! <br /-->
<br>
THERE IS EVERYTHING FROM KIDS CLOTHING TO AN ANTIQUE DINING ROOM TABLE, OR ELECTRONICS, TOYS, DISHES, TOOLS, HARDWARE, WOMENS AND GIRLS...]]></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 AM</end_date>
<address><!--[CDATA[745 HARVEY AVE(HWY 97)]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8835555]]--></lat>
<long><!--[CDATA[-119.48734400000001]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6558">
<id>6558</id>
<highlight>0</highlight>
<title><![CDATA[Multi Family Garage Sale]]></title>
<descr><!--[CDATA[Yard items, electrical, tools etc. Lots of stuff. 8-2 August 9th.]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[3148 McIver Road]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8486298]]--></lat>
<long><!--[CDATA[-119.66633619999999]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6559">
<id>6559</id>
<highlight>0</highlight>
<title><![CDATA[Moving Sale]]></title>
<descr><!--[CDATA[6 piece dining room set with leaf and bench, 2 dressers, 58" Sony Bravia LCD TV with swivel wall mount, Leather Sectional Couch, side tables, numerous framed prints, Coffee Tables, end tables,...]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 4:00 PM</end_date>
<address><!--[CDATA[919 Lanfranco Rd.]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.8575005]]--></lat>
<long><!--[CDATA[-119.48186099999998]]--></long>
<photo>6559-1-1.jpg</photo>
<images>
<img>6559-1-1.jpg
<img>6559-2-1.jpg
<img>6559-3-1.jpg
<img>6559-4-1.jpg
<img>6559-5-1.jpg
<img>6559-6-1.jpg
<img>6559-7-1.jpg
<img>6559-8-1.jpg
<img>6559-9-1.jpg
</images>
</row>
<row id="6560">
<id>6560</id>
<highlight>0</highlight>
<title><![CDATA[MOVING SALE August 8th & 9th 8am-1pm]]></title>
<descr><!--[CDATA[Down sizing – 35 years of collectables and furniture<br /-->
Wine making and canning equipment<br>
Household goods<br>
Farm items<br>
Fencing (2x6x20 painted white AND new chain link)<br>
]]></descr>
<start_date>Fri, Aug 8 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 AM</end_date>
<address><!--[CDATA[9915 Read Road]]--></address>
<city><!--[CDATA[Lake Country]]--></city>
<lat><!--[CDATA[50.0259187]]--></lat>
<long><!--[CDATA[-119.41075840000002]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6561">
<id>6561</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale]]></title>
<descr><!--[CDATA[Household Items, small furniture]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 PM</end_date>
<address><!--[CDATA[11957 Bond Rd. Winfield, BC]]--></address>
<city><!--[CDATA[Lake Country]]--></city>
<lat><!--[CDATA[50.044452]]--></lat>
<long><!--[CDATA[-119.42564329999999]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6562">
<id>6562</id>
<highlight>0</highlight>
<title><![CDATA[HUGE Garage Sale!]]></title>
<descr><!--[CDATA[Vintage and antique linens and lace, including runners, doilies, tablecloths, napkins, bedding, vintage linen dish towels, christening gowns, and a lovely chenille bedspread. (Please see...]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 4:00 PM</end_date>
<address><!--[CDATA[East Hill, Vernon V1T 7X5. 1008, 32nd Ave (last Strata at top of 32nd)]]--></address>
<city><!--[CDATA[Vernon]]--></city>
<lat><!--[CDATA[50.2670137]]--></lat>
<long><!--[CDATA[-119.27201070000001]]--></long>
<photo>6562-1-1.jpg</photo>
<images>
<img>6562-1-1.jpg
<img>6562-2-1.jpg
<img>6562-3-1.jpg
</images>
</row>
<row id="6563">
<id>6563</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale - August 9, 2014 8:00 a.m. to 12:00 p.m.]]></title>
<descr><!--[CDATA[Lots of household items, girl's toys and clothes. Kids table and two chairs and much more]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 12:00 PM</end_date>
<address><!--[CDATA[542 South Crest Drive - Upper Mission]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.79982]]--></lat>
<long><!--[CDATA[-119.49379220000003]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6564">
<id>6564</id>
<highlight>0</highlight>
<title><![CDATA[MOVING SALE August 8th & 9th 8am-1pm]]></title>
<descr><!--[CDATA[LAKE COUNTRY - Down sizing – 35 years of collectables and furniture<br /-->
Wine making and canning equipment<br>
Household goods<br>
Farm items<br>
Fencing (2x6x20 painted white AND new chain link)]]></descr>
<start_date>Fri, Aug 8 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 1:00 AM</end_date>
<address><!--[CDATA[9915 Read Road, Lake Country]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[50.0259187]]--></lat>
<long><!--[CDATA[-119.41075840000002]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6565">
<id>6565</id>
<highlight>0</highlight>
<title><![CDATA[Clearance Garage Sale!!!]]></title>
<descr><!--[CDATA[Lots of kids toys, kids clothes, womens clothes, games, books, stuffies, and MUCH more!! Everything must go! The more you buy the cheaper it will be! But everything is going CHEAP!!]]--></descr>
<start_date>Sat, Aug 9 - 8:30 AM</start_date>
<end_date>Sat, Aug 9 - 3:00 PM</end_date>
<address><!--[CDATA[3324 McIver rd]]--></address>
<city><!--[CDATA[West Kelowna]]--></city>
<lat><!--[CDATA[49.8420066]]--></lat>
<long><!--[CDATA[-119.66194159999998]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6567">
<id>6567</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale]]></title>
<descr><!--[CDATA[Kids' toys, books, crafts, games, DVDs and clothes, water skis, car seats, and kitchen stuff. <br /-->
8 -3 Saturday and Sunday.]]></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 3:00 PM</end_date>
<address><!--[CDATA[1670 Stafford Road]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9101755]]--></lat>
<long><!--[CDATA[-119.3923476]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6568">
<id>6568</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale]]></title>
<descr><!--[CDATA[Kids' toys, books, crafts, games, DVDs and clothes, water skis, car seats, and kitchen stuff. <br /-->
8 -3 Saturday and Sunday.]]></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 3:00 PM</end_date>
<address><!--[CDATA[1670 Stafford Road]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9101755]]--></lat>
<long><!--[CDATA[-119.3923476]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6569">
<id>6569</id>
<highlight>0</highlight>
<title><![CDATA[Garage Sale]]></title>
<descr><!--[CDATA[Kids' toys, books, crafts, games, DVDs and clothes, water skis, car seats, and kitchen stuff. <br /-->
8 -3 Saturday and Sunday.]]></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sun, Aug 10 - 3:00 PM</end_date>
<address><!--[CDATA[1670 Stafford Road]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9101755]]--></lat>
<long><!--[CDATA[-119.3923476]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6572">
<id>6572</id>
<highlight>0</highlight>
<title><![CDATA[SO MUCH GOOD STUFF TO CHOOSE FROM !!]]></title>
<descr><!--[CDATA[TOOLS OF EVERY KIND. BUILDING MATERIALS. ANTIQUES & COLLECTIBLES. NO BABY STUFF.]]--></descr>
<start_date>Sat, Aug 9 - 8:00 AM</start_date>
<end_date>Sat, Aug 9 - 2:00 PM</end_date>
<address><!--[CDATA[2255 SCENIC ROAD]]--></address>
<city><!--[CDATA[Kelowna]]--></city>
<lat><!--[CDATA[49.9309086]]--></lat>
<long><!--[CDATA[-119.42987240000002]]--></long>
<photo></photo>
<images>
<img>
</images>
</row>
<row id="6573">
<id>6573</id>
<highlight>0</highlight>
<title><![CDATA[moving / garage sale]]></title>
<descr><!--[CDATA[portable/movable bar (leather & wood finish with foot rail) with three matching stools . Wood (pine) matching coffee and two end tables. New " Mustang" floater/survival jacket...]]--></descr>
<start_date>Sat, Aug 9 - 9:00 AM</start_date>
<end_date>Sat, Aug 9 - 3:00 PM</end_date>
<address><!--[CDATA[3331sundance drive]]--></address>