lcbo 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore CHANGED
@@ -1 +1,3 @@
1
+ Gemfile.lock
1
2
  pkg
3
+
@@ -1,3 +1,8 @@
1
+ Version 1.2.0
2
+
3
+ * Updated dependencies.
4
+ * Fixed latitude/longitude parsing for stores.
5
+
1
6
  Version 1.1.1
2
7
 
3
8
  * Added case to ignore default thumbnail images for Vintages.
data/README.md CHANGED
@@ -6,22 +6,24 @@ store list pages directly from the [LCBO](http://lcbo.com) website.
6
6
 
7
7
  ## Synopsis
8
8
 
9
- require 'lcbo'
9
+ ```ruby
10
+ require 'lcbo'
10
11
 
11
- LCBO.store(511)
12
- # => { :id => 511, :name => "King & Spadina", ... }
12
+ LCBO.store(511)
13
+ # => { :id => 511, :name => "King & Spadina", ... }
13
14
 
14
- LCBO.product(18)
15
- # => { :id => 18, :name => "Heineken Lager", ... }
15
+ LCBO.product(18)
16
+ # => { :id => 18, :name => "Heineken Lager", ... }
16
17
 
17
- LCBO.inventory(18)
18
- # => { :id => 18, :inventory_count => 40398, :inventories => [ ... ] }
18
+ LCBO.inventory(18)
19
+ # => { :id => 18, :inventory_count => 40398, :inventories => [ ... ] }
19
20
 
20
- LCBO.products_list(1)
21
- # => { :page => 1, :final_page => 108, ..., :product_ids => [ ... ] }
21
+ LCBO.products_list(1)
22
+ # => { :page => 1, :final_page => 108, ..., :product_ids => [ ... ] }
22
23
 
23
- LCBO.store_list
24
- # => { :store_ids => [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, ...] }
24
+ LCBO.store_list
25
+ # => { :store_ids => [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, ...] }
26
+ ```
25
27
 
26
28
  ## Crawlers
27
29
 
@@ -11,18 +11,14 @@ Gem::Specification.new do |s|
11
11
  s.summary = %q{A library for parsing HTML pages from http://lcbo.com}
12
12
  s.description = %q{Request and parse product, store, inventory, and product search pages directly from the official LCBO website.}
13
13
 
14
- s.required_rubygems_version = '>= 1.8.5'
15
14
  s.rubyforge_project = 'lcbo'
16
15
 
17
- s.add_dependency 'typhoeus', '~> 0.2.4'
18
- s.add_dependency 'nokogiri', '~> 1.4.4'
19
- s.add_dependency 'unicode_utils', '~> 1.0.0'
20
- s.add_dependency 'stringex', '~> 1.2.0'
16
+ s.add_dependency 'typhoeus', '~> 0.3.3'
17
+ s.add_dependency 'nokogiri', '~> 1.5.0'
18
+ s.add_dependency 'unicode_utils', '~> 1.2.2'
19
+ s.add_dependency 'stringex', '~> 1.3.0'
21
20
 
22
21
  s.files = `git ls-files`.split(?\n)
23
22
  s.test_files = `git ls-files -- {test,spec}/*`.split(?\n)
24
23
  s.require_paths = ['lib']
25
-
26
- # If you need an executable, add it here
27
- # s.executables = ['lcbo']
28
24
  end
@@ -26,9 +26,9 @@ module LCBO
26
26
 
27
27
  def config
28
28
  opts = {}
29
- opts[:method] = request_prototype.http_method
30
- opts[:user_agent] = USER_AGENT
31
- opts[:body] = _body if body_params && !gettable?
29
+ opts[:method] = request_prototype.http_method
30
+ opts[:headers] = { 'User-Agent' => USER_AGENT }
31
+ opts[:body] = _body if body_params && !gettable?
32
32
  opts
33
33
  end
34
34
 
@@ -95,11 +95,11 @@ module LCBO
95
95
  end
96
96
 
97
97
  emits :latitude do
98
- location['latitude'][0].to_f
98
+ location[0].to_f
99
99
  end
100
100
 
101
101
  emits :longitude do
102
- location['longitude'][0].to_f
102
+ location[1].to_f
103
103
  end
104
104
 
105
105
  DAY_NAMES.each do |day|
@@ -133,11 +133,15 @@ module LCBO
133
133
  end
134
134
 
135
135
  def map_anchor_href
136
- info_nodes[has_fax? ? 6 : 5].css('a').first.attributes['href'].to_s
136
+ @map_anchor_href ||= begin
137
+ info_nodes[has_fax? ? 6 : 5].css('a').first.attributes['href'].to_s
138
+ end
137
139
  end
138
140
 
139
141
  def location
140
- CGI.parse(URI.parse(map_anchor_href).query)
142
+ @location ||= begin
143
+ CGI.parse(URI.parse(map_anchor_href).query)['q'][0].to_s.split(',')
144
+ end
141
145
  end
142
146
 
143
147
  def has_fax?
@@ -1,3 +1,3 @@
1
1
  module LCBO
2
- VERSION = '1.1.1'
2
+ VERSION = '1.2.0'
3
3
  end
@@ -7,11 +7,11 @@
7
7
  :expectation:
8
8
  :id: 444
9
9
  :name: Kennedy & Sheppard
10
- :tags: ["kennedy", "sheppard", "2356", "road", "agincourt", "mall", "toronto", "scarborough", "toronto-scarborough", "torontoscarborough", "m1t3h1"]
10
+ :tags: ["kennedy", "sheppard", "2356", "road", "agincourt", "mall", "toronto", "scarborough", "toronto-scarborough", "torontoscarborough", "m1t", "3h1"]
11
11
  :address_line_1: 2356 Kennedy Road
12
12
  :address_line_2: Agincourt Mall
13
13
  :city: Toronto-Scarborough
14
- :postal_code: M1T3H1
14
+ :postal_code: M1T 3H1
15
15
  :telephone: (416) 291-5304
16
16
  :fax: (416) 291-0246
17
17
  :latitude: 43.7838
@@ -20,22 +20,22 @@
20
20
  :has_transit_access: true
21
21
  :has_wheelchair_accessability: true
22
22
  :has_bilingual_services: false
23
- :has_product_consultant: false
23
+ :has_product_consultant: true
24
24
  :has_tasting_bar: true
25
25
  :has_beer_cold_room: false
26
26
  :has_special_occasion_permits: true
27
27
  :has_vintages_corner: true
28
- :monday_open: 600
28
+ :monday_open: 570
29
29
  :monday_close: 1320
30
- :tuesday_open: 600
30
+ :tuesday_open: 570
31
31
  :tuesday_close: 1320
32
- :wednesday_open: 600
32
+ :wednesday_open: 570
33
33
  :wednesday_close: 1320
34
- :thursday_open: 600
34
+ :thursday_open: 570
35
35
  :thursday_close: 1320
36
- :friday_open: 600
36
+ :friday_open: 570
37
37
  :friday_close: 1320
38
- :saturday_open: 600
38
+ :saturday_open: 570
39
39
  :saturday_close: 1320
40
40
  :sunday_open: 720
41
41
  :sunday_close: 1020
@@ -56,17 +56,17 @@
56
56
  :thursday_open: 570
57
57
  :thursday_close: 1080
58
58
  :friday_open: 570
59
- :friday_close: 1200
59
+ :friday_close: 1080
60
60
  :saturday_open: 570
61
61
  :saturday_close: 1080
62
- :sunday_open: 720
63
- :sunday_close: 960
64
- :name: Flora & Clinton Street
65
- :tags: ["flora", "clinton", "street", "1", "industrial", "road", "unit", "b", "teeswater", "n0g2s0"]
62
+ :sunday_open:
63
+ :sunday_close:
64
+ :name: Industrial Road & Clinton Street
65
+ :tags: ["industrial", "road", "clinton", "street", "1", "unit", "b", "teeswater", "n0g", "2s0"]
66
66
  :address_line_1: 1 Industrial Road
67
67
  :address_line_2: Unit B
68
68
  :city: Teeswater
69
- :postal_code: N0G2S0
69
+ :postal_code: N0G 2S0
70
70
  :telephone: (519) 392-6837
71
71
  :fax: (519) 392-8481
72
72
  :latitude: 44.0017
@@ -1,592 +1,607 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
- <html>
19
- <head>
20
-
21
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
22
- <meta http-equiv=Expires content="Mon, 01 Jan 1996 01:01:01 GMT">
23
- <title>LCBO Store Information</title>
24
-
25
- <script language="Javascript">
26
-
27
- function PrintItemDetails() {
28
- var localwin=window.open("storeInfoPrinterFriendly.jsp?STORE=444&language=en","StoreInfoPrintPopup","status=0,scrollbars=1,resizable=1,width=700,height=600,top=0,left=0");
29
- }
30
-
31
- </script>
32
-
33
- <link rel="stylesheet" href="/storesearch/lcbo.css" type="text/css">
34
- <base target="_top" />
35
- </head>
36
-
37
- <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
38
-
39
- <br />
40
- <table width="774" border="0" cellspacing="0" cellpadding="0" class="mainborder" align="center">
41
- <tr>
42
- <td>
43
- <table width="774" border="0" cellspacing="0" cellpadding="0"
44
- align="center">
45
- <tr>
46
- <td>
47
-
48
- <!--Beginning of Primary SSI file 2009//-->
49
-
50
- <noscript><div style="position:absolute;top:0;left:0;background-color:#DADEAF;width:100%;text-align:center;font-size:10px;font-family:verdana,arial,helvetica,sans-serif;padding:5px 0px;color:#193105;">Please note: JavaScript (scripting) must be enabled for this site to work as intended.</div></noscript>
51
-
52
-
53
-
54
- <style>
55
- .AutoCompleteBackground
56
- {
57
- background-color:white;
58
- }
59
- .AutoCompleteHighlight
60
- {
61
- background-color:#D6DE9D;
62
- }
63
- #theDiv {width:215px;background-color:white;white-space:nowrap; overflow:hidden;}
64
- #theDiv2 {width:215px;background-color:white;white-space:nowrap; overflow:hidden;}
65
- </style>
66
-
67
- <script type="text/javascript" src="/ssi/primary.js"></script>
68
- <table border="0" cellpadding="0" cellspacing="0" width="774"><tr><td><a href="/english.html"><img src="/ssi/images/logo.gif" width="97" height="64" border="0"></a></td><td><table border="0" cellpadding="0" cellspacing="0" width="677"><tr><td>
69
- <img src="/images/spacer.gif" width="677" height="16" border="0"></td></tr><tr><td>
70
- <table border="0" cellpadding="0" cellspacing="0" width="677"><tr>
71
- <td title="Discover" style="cursor:pointer;" onclick="document.location.href='/discover/index.shtml';"><a id="graphic-discover" title="Discover" href="/discover/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c2','','/ssi/images/topnav_r2_c2_f2.gif',1);" ><img name="topnav_r2_c2" src="/ssi/images/topnav_r2_c2.gif" width="84" height="22" border="0" alt="Discover"></a></td>
72
- <td title="FOOD &amp; DRINK" style="cursor:pointer;" onclick="document.location.href='/fooddrink/index.shtml';"><a id="graphic-fooddrink" title="FOOD &amp; DRINK" href="/fooddrink/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c3','','/ssi/images/topnav_r2_c3_f2.gif',1);" ><img name="topnav_r2_c3" src="/ssi/images/topnav_r2_c3.gif" width="115" height="22" border="0" alt="FOOD &amp; DRINK"></a></td>
73
- <td title="Products" style="cursor:pointer;" onclick="document.location.href='/products/index.shtml';"><a id="graphic-products" title="Products" href="/products/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c4','','/ssi/images/topnav_r2_c4_f2.gif',1);" ><img name="topnav_r2_c4" src="/ssi/images/topnav_r2_c4.gif" width="86" height="22" border="0" alt="Products"></a></td>
74
- <td title="Events & Courses | Podcasts | Planning Tips | The Basics" style="cursor:pointer;" onclick="document.location.href='/learn/index.shtml';"><a id="graphic-learn" title="Events & Courses | Podcasts | Planning Tips | The Basics" href="/learn/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c5','','/ssi/images/topnav_r2_c5_f2.gif',1);" ><img name="topnav_r2_c5" src="/ssi/images/topnav_r2_c5.gif" width="68" height="22" border="0" alt="Events & Courses | Podcasts | Planning Tips | The Basics"></a></td>
75
- <td title="Gifts" style="cursor:pointer;" onclick="document.location.href='/gifts/index.shtml';"><a id="graphic-gifts" title="Gifts" href="/gifts/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c6','','/ssi/images/topnav_r2_c6_f2.gif',1);" ><img name="topnav_r2_c6" src="/ssi/images/topnav_r2_c6.gif" width="59" height="22" border="0" alt="Gifts"></a></td>
76
- <td title="Search"><a id="graphic-search" title="Search"><img name="topnav_r2_c7" src="/ssi/images/topnav_r2_c7.gif" width="72" height="22" border="0" alt="Search"></a></td>
77
-
78
- <td>
79
- <form name="quickSearchForm" id="quickSearchForm" method="get" action="/lcbo-ear/lcbo/product/searchResults.do" onsubmit="quickSearchForm_checkNameOrNumber()" style="padding: 0; margin: 0;">
80
- <div style="position:relative;overflow:visible;cursor:pointer;">
81
- <input name="ITEM_NAME" id="ITEM_NAME" value="Product Name or Item #" type="text" autocomplete="off" style="border: 1px solid black; font-size: 9px; height: 20px; padding-top:3px; font-family: arial;/*\*//*/height: 15px;/**/" size="22" onfocus="this.value=''">
82
- <div id="theDiv" style="padding:4px;position:absolute;left:0px;top:21px;visibility:hidden;border:solid #D6DE9D 1px;background-color:white;z-index:1;font-family:arial;font-size:10px;">
83
- </div>
84
- </div>
85
- <input name="ITEM_NUMBER" type="hidden" value="">
86
- <input name="language" type="hidden" value="EN">
87
- </form>
88
- </td>
89
-
90
- <td><img src="/images/spacer.gif" width="3" height="22" border="0"></td>
91
- <td><a href="#" onclick="quickSearchForm_checkNameOrNumber(); quickSearchForm.submit()" target="_self"><img src="/ssi/images/topnav_r2_c10.gif" width="22" height="22" border="0" alt="Go"></a></td>
92
- <td><img src="/images/spacer.gif" width="26" height="22" border="0"></td></tr></table></td></tr>
93
-
94
- <tr><td><img src="/images/spacer.gif" width="677" height="16" border="0"></td></tr></table></td></tr></table>
95
-
96
- <script type="text/javascript" src="/lcbo-ear/js/typeAhead/Http.js"></script>
97
- <script type="text/javascript" src="/lcbo-ear/js/typeAhead/QuickSearchForm.js"></script>
98
- <script type="text/javascript">
99
- quickSearchForm_setLanguage("EN");
100
- quickSearchForm_setItemnameResults("15");
101
- quickSearchForm_setItemnameLength("32");
102
- var set_inputForm_setItemnameResults = false;
103
- </script>
104
- <!--[if IE 6]>
105
- <script type="text/javascript">
106
- quickSearchForm_setItemnameResults("4");
107
- </script>
108
- <![endif]-->
109
-
110
- <!--End of Primary SSI file//-->
111
-
112
-
113
- </td>
114
- </tr>
115
- <tr>
116
- <td>
117
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
118
- <tr>
119
- <td>&nbsp;</td>
120
- <td>
121
-
122
- <style>
123
- #2nd_storesearch {color:#cccc99;}
124
- </style>
125
- <font size="1" face="Verdana, Arial, Helvetica, sans-serif">
126
- <a id="2nd_storesearch" href="/storesearch/">Store Search</a>
127
- </font>
128
-
129
- </td>
130
- <td>&nbsp;</td>
131
- </tr>
132
- <tr>
133
- <td colspan="3"><img name="nav_rde_r1_c2"
134
- src="/images/products/nav_rde_r1_c2.gif" width="25" height="4"
135
- border="0"></td>
136
- </tr>
137
- <tr>
138
- <td><img name="nav_rde_r1_c2"
139
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
140
- border="0"></td>
141
- <td><img name="nav_rde_r1_c2"
142
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
143
- border="0"></td>
144
- <td><img name="nav_rde_r1_c2"
145
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
146
- border="0"></td>
147
- </tr>
148
- <tr>
149
- <td colspan="3"><img name="nav_rde_r1_c2"
150
- src="/images/products/images/nav_rde_r1_c2.gif" width="25"
151
- height="6" border="0"></td>
152
- </tr>
153
- <tr>
154
- <td>&nbsp;</td>
155
- <td>
156
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
157
- <tr>
158
- <td width="207" valign="top">
159
- <table width="11%" border="0" cellspacing="0" cellpadding="0">
160
- <tr>
161
- <td><img name="food_drink_r1_c1"
162
- src="/images/storesearch/lcbo_store.gif" width="236"
163
- height="189" border="0" alt="LCBO Store"></td>
164
- </tr>
165
- <tr>
166
- <td><img name="food_drink_r2_c1"
167
- src="/images/storesearch/store_info.gif" width="236"
168
- height="84" border="0" alt="Store Info"></td>
169
- </tr>
170
- </table>
171
- </td>
172
- <td width="5">&nbsp;</td>
173
- <td width="479">
174
- <table width="478" border="0" cellspacing="0" cellpadding="0"
175
- class="border">
176
- <tr>
177
- <td height="271" valign="top">
178
- <table width="100%" border="0" cellspacing="0"
179
- cellpadding="10">
180
- <tr>
181
- <td><!--content starts here-->
182
- <table width="100%" border="0" cellspacing="0"
183
- cellpadding="0">
184
- <!--printer friendly starts here-->
185
- <tr>
186
- <td width="50%">&nbsp;</td>
187
- <td class="main_font" width="50%" valign="top">
188
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
189
- <tr>
190
- <td class="main_font" valign="top" align="right"><a href="javascript:PrintItemDetails();"><img src="/images/food_drink/green_arrow.gif" border="0"/>Printer friendly version</a></td>
191
- </tr>
192
- </table>
193
- </td>
194
- </tr>
195
- <!--printer friendly ends here-->
196
- <tr>
197
- <td width="50%" valign="top">
198
- <table width="100%" border="0" cellspacing="0"
199
- cellpadding="0">
200
-
201
-
202
-
203
-
204
-
205
- <tr>
206
- <td width="48%"><span class="main_font"><font
207
- color="#859234" class="main_font"><b>LCBO Store #&nbsp;444:</b></font></span><br>
208
- </tr>
209
- <tr>
210
- <td><img name="nav_rde_r1_c2"
211
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
212
- height="4" border="0"></td>
213
- </tr>
214
- <tr>
215
- <td width="48%" class="main_font"><i>KENNEDY & SHEPPARD (AGINCOURT MALL)</i></td>
216
- </tr>
217
- <tr>
218
- <td class="main_font"><img name="nav_rde_r1_c2"
219
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
220
- height="4" border="0"></td>
221
- </tr>
222
- <tr>
223
- <td width="48%" class="main_font">2356 KENNEDY ROAD,
224
-
225
- AGINCOURT MALL, </td>
226
- </tr>
227
- <tr>
228
- <td class="main_font"><img name="nav_rde_r1_c2"
229
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
230
- height="4" border="0"></td>
231
- </tr>
232
- <tr>
233
- <td width="48%" class="main_font">TORONTO-SCARBOROUGH,
234
- M1T3H1 </td>
235
- </tr>
236
- <tr>
237
- <td class="main_font"><img name="nav_rde_r1_c2"
238
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
239
- height="4" border="0"></td>
240
- </tr>
241
- <tr>
242
- <td width="48%" class="main_font">Telephone: (416)
243
- 291-5304</td>
244
- </tr>
245
- <tr>
246
- <td class="main_font"><img name="nav_rde_r1_c2"
247
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
248
- height="4" border="0"></td>
249
- </tr>
250
- <tr>
251
-
252
-
253
- <td width="48%" class="main_font">Fax: (416)
254
- 291-0246</td>
255
-
256
-
257
- </tr>
258
- <tr>
259
- <td><img name="nav_rde_r1_c2"
260
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
261
- height="12" border="0"></td>
262
- </tr>
263
- <tr>
264
- <td width="48%">
265
- <p><a
266
- href="/lcbo-ear/mapquest/map.jsp?latitude=43.7838&longitude=-79.2902"
267
- name="Show Map" target="lcbo_showmap"><img
268
- src="/images/storesearch/showmap.gif" width=144
269
- height=20 border=0 alt=""></a></p>
270
- </td>
271
- </tr>
272
- </table>
273
- </td>
274
- <td width="50%" valign="top">
275
- <table border="0" cellspacing="0" cellpadding="0">
276
- <tr>
277
- <td colspan="2"><font color="#546415"><span
278
- class="main_font"><b><font color="#859234"
279
- class="main_font">HOURS OF OPERATION</font></b></span></font></td>
280
- </tr>
281
- <tr>
282
- <td colspan="2"><img name="nav_rde_r1_c2"
283
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
284
- height="4" border="0"></td>
285
- </tr>
286
- <tr>
287
- <td class="main_font" align="left">Sunday:&nbsp;</td>
288
-
289
- <td class="main_font" align="right">
290
- 12:00 - 17:00
291
-
292
- </td>
293
- </tr>
294
- <tr>
295
- <td colspan="2" class="main_font"><img
296
- name="nav_rde_r1_c2"
297
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
298
- height="4" border="0"></td>
299
- </tr>
300
- <tr>
301
- <td class="main_font" align="left">Monday:&nbsp;</td>
302
-
303
- <td class="main_font" align="right">
304
- 10:00 - 22:00
305
-
306
- </td>
307
- </tr>
308
- <tr>
309
- <td colspan="2" class="main_font"><img
310
- name="nav_rde_r1_c2"
311
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
312
- height="4" border="0"></td>
313
- </tr>
314
- <tr>
315
- <td class="main_font" align="left">Tuesday:&nbsp;</td>
316
-
317
- <td class="main_font" align="right">
318
- 10:00 - 22:00
319
-
320
- </td>
321
- </tr>
322
- <tr>
323
- <td colspan="2" class="main_font"><img
324
- name="nav_rde_r1_c2"
325
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
326
- height="4" border="0"></td>
327
- </tr>
328
- <tr>
329
- <td class="main_font" align="left">Wednesday:&nbsp;</td>
330
-
331
- <td class="main_font" align="right">
332
- 10:00 - 22:00
333
-
334
- </td>
335
- </tr>
336
- <tr>
337
- <td colspan="2" class="main_font"><img
338
- name="nav_rde_r1_c2"
339
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
340
- height="4" border="0"></td>
341
- </tr>
342
- <tr>
343
- <td class="main_font" align="left">Thursday:&nbsp;</td>
344
-
345
- <td class="main_font" align="right">
346
- 10:00 - 22:00
347
-
348
- </td>
349
- </tr>
350
- <tr>
351
- <td colspan="2" class="main_font"><img
352
- name="nav_rde_r1_c2"
353
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
354
- height="4" border="0"></td>
355
- </tr>
356
- <tr>
357
- <td class="main_font" align="left">Friday:&nbsp;</td>
358
-
359
- <td class="main_font" align="right">
360
- 10:00 - 22:00
361
-
362
- </td>
363
- </tr>
364
- <tr>
365
- <td colspan="2" class="main_font"><img
366
- name="nav_rde_r1_c2"
367
- src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
368
- height="4" border="0"></td>
369
- </tr>
370
- <tr>
371
- <td class="main_font" align="left">Saturday:&nbsp;</td>
372
-
373
- <td class="main_font" align="right">
374
- 10:00 - 22:00
375
-
376
- </td>
377
- </tr>
378
- </table>
379
- </td>
380
- </tr>
381
- </table>
382
- <br>
383
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
384
- <tr>
385
- <td colspan="2" valign="top"><font color="#546415"><span
386
- class="main_font"><b><font color="#859234"
387
- class="main_font">This store has the following features:</font></b></span></font></td>
388
- </tr>
389
-
390
- <tr>
391
- <td width="50%" valign="top">
392
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
393
- <tr>
394
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
395
- </tr>
396
- <!-- parking -->
397
- <tr>
398
- <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;parking</td>
399
- </tr>
400
- <tr>
401
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
402
- </tr>
403
- <!-- transit access -->
404
- <tr>
405
- <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;transit access</td>
406
- </tr>
407
- <tr>
408
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
409
- </tr>
410
- <!-- wheelchair accessibility -->
411
- <tr>
412
- <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;wheelchair accessibility</td>
413
- </tr>
414
- <tr>
415
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
416
- </tr>
417
- <!-- bilingual services -->
418
- <tr>
419
- <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" >&nbsp;bilingual services</td>
420
- </tr>
421
- <tr>
422
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
423
- </tr>
424
- <!-- wine consultant -->
425
- <tr>
426
- <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" >&nbsp;product consultant</td>
427
- </tr>
428
- <tr>
429
- <td class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="12" border="0"></td>
430
- </tr>
431
- <tr>
432
- <td width="48%" align="left"><a href="javascript:history.go(-1)"><img
433
- src="/images/storesearch/returntoprevious.gif"
434
- width="144" height="20" border="0"
435
- alt="Return to Previous Page"></a></td>
436
- </tr>
437
- </table>
438
- </td>
439
- <td width="50%" valign="top">
440
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
441
- <tr>
442
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
443
- </tr>
444
- <!-- tasting bar -->
445
- <tr>
446
- <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;a tasting bar</td>
447
- </tr>
448
- <tr>
449
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
450
- </tr>
451
- <tr>
452
- <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" >&nbsp;a beer cold room</td>
453
- </tr>
454
- <tr>
455
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
456
- </tr>
457
- <tr>
458
- <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;special occasion permits</td>
459
- </tr>
460
- <tr>
461
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
462
- </tr>
463
- <tr>
464
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
465
- </tr>
466
- <tr>
467
- <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;a vintages corner</td>
468
- </tr>
469
- <tr>
470
- <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
471
- </tr>
472
-
473
- </table>
474
- </td>
475
- </tr>
476
- </table>
477
- <!--content ends here--></td>
478
- </tr>
479
- </table>
480
- </td>
481
- </tr>
482
- </table>
483
- </td>
484
- </tr>
485
- </table>
486
- </td>
487
- <td>&nbsp;</td>
488
- </tr>
489
- <tr>
490
- <td>&nbsp;</td>
491
- <td>&nbsp;</td>
492
- <td>&nbsp;</td>
493
- </tr>
494
- <tr>
495
- <td>&nbsp;</td>
496
-
497
- <!--2008//-->
498
-
499
- <script type="text/javascript" src="/ssi/footer.js"></script>
500
-
501
- <!--needed structure//--><td><!--needed structure//-->
502
-
503
- <table WIDTH="100%" border="0" cellpadding="0" cellspacing="0">
504
-
505
- <tr>
506
-
507
- <td>
508
- <span class="textlinks">
509
- <a id="aboutlcbo" href="/aboutlcbo/index.shtml">About LCBO</a>&nbsp;|
510
- <a id="accessibility" href="/accessibility/index.shtml">Accessibility</a>&nbsp;|
511
- <a id="socialresponsibility" href="/socialresponsibility/index.shtml">Social Responsibility</a>&nbsp;|
512
- <a id="careers" href="/careers/index.shtml">Careers</a>&nbsp;|
513
- <a id="vintages" href="/vintages/index.shtml" target="_blank">VINTAGES</a>&nbsp;|
514
- <a id="contactus" href="/contactus/index.shtml">Contact Us</a>&nbsp;|
515
- <a id="sitemap" href="/sitemap/index.shtml">Site Map</a>&nbsp;|
516
- <a id="storesearch" href="/storesearch/index.shtml">Store Search</a>
517
-
518
-
519
-
520
- <script>
521
- var win = null;
522
- function NewWindowPopBox(mypage,myname,w,h,scroll){
523
- LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
524
- TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
525
- settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=yes'
526
- win = window.open(mypage,myname,settings)}
527
- </script>
528
-
529
- <!--
530
- <a id="fsi" target="_blank" href="/main/files/fsi/correction.html" onclick="NewWindow(this.href,'xmlPop','546','398','yes');return false" style="color:#E71838;" >Correction Notice</a>
531
- //-->
532
- </span></td>
533
-
534
- <script src="/ssi/footer_fsi.js"></script>
535
-
536
- </tr></table>
537
-
538
- <!--needed structure//--></td><!--needed structure//-->
539
-
540
- <td>&nbsp;</td>
541
- </tr>
542
- <tr>
543
- <td>&nbsp;</td>
544
- <td>&nbsp;</td>
545
- <td>&nbsp;</td>
546
- </tr>
547
- </table>
548
- </td>
549
- </tr>
550
- </table>
551
- </td>
552
- </tr>
553
- </table>
554
-
555
- <!--2009//-->
556
-
557
- <!--copyright notice begins//-->
558
-
559
- <div align="center"><br><table width="774" border="0" cellspacing="0" cellpadding="0"><tr><td width="10"><img src="/images/spacer.gif" width="25" height="4" border="0"></td><td width="764"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td><span class="textlinks" style="color:#666666">&copy; 2000/2010 LCBO</span><span class="textlinks"> | <a id="privacy" href="/privacy/index.shtml">Privacy Policy</a> | <a id="terms" href="/terms/index.shtml">Terms &amp; Conditions</a> | <a id="language" href="/french.html">
560
- Fran�ais</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.lcbotrade.com/" target="_blank">TRADE RESOURCES</a></span></td><td align="right"><a href="/bagitback/bib_en.shtml" target="_blank"><img onmouseover="this.src='/ssi/images/bagitback_on.gif';" onmouseout="this.src='/ssi/images/bagitback_off.gif';" src="/ssi/images/bagitback_off.gif" width="110" height="14" border="0" alt="BAGITBACK.CA" style="margin-right:25px;"></a></td></tr></table></td></tr><tr><td width="10">&nbsp;</td><td width="764">&nbsp;</td></tr></table></div>
561
-
562
- <!--copyright notice ends//-->
563
-
564
- <!--Suppress IE6 Image toolbar//-->
565
- <META HTTP-EQUIV="imagetoolbar" CONTENT="no">
566
-
567
- <script type="text/javascript">
568
- if (set_inputForm_setItemnameResults) {
569
- inputForm_setItemnameResults("15");
570
- inputForm_setItemnameLength("32");
571
- }
572
- </script>
573
- <!--[if IE 6]>
574
- <script type="text/javascript">
575
- if (set_inputForm_setItemnameResults) {
576
- inputForm_setItemnameResults("4"); }
577
- </script>
578
- <![endif]-->
579
-
580
- <script type="text/javascript">
581
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
582
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
583
- </script>
584
- <script type="text/javascript">
585
- var pageTracker = _gat._getTracker("UA-553500-6");
586
- pageTracker._trackPageview();
587
- </script>
588
-
589
-
590
-
591
- </body>
592
- </html>
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+ <html>
22
+ <head>
23
+
24
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
25
+ <meta http-equiv=Expires content="Mon, 01 Jan 1996 01:01:01 GMT">
26
+ <title>LCBO Store Information</title>
27
+
28
+ <script language="Javascript">
29
+
30
+ function PrintItemDetails() {
31
+ var localwin=window.open("storeInfoPrinterFriendly.jsp?STORE=444&language=en","StoreInfoPrintPopup","status=0,scrollbars=1,resizable=1,width=700,height=600,top=0,left=0");
32
+ }
33
+
34
+ </script>
35
+
36
+ <link rel="stylesheet" href="/storesearch/lcbo.css" type="text/css">
37
+ <base target="_top" />
38
+ </head>
39
+
40
+ <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
41
+
42
+ <br />
43
+ <table width="774" border="0" cellspacing="0" cellpadding="0" class="mainborder" align="center">
44
+ <tr>
45
+ <td>
46
+ <table width="774" border="0" cellspacing="0" cellpadding="0"
47
+ align="center">
48
+ <tr>
49
+ <td>
50
+
51
+ <!--Beginning of Primary SSI file 2009//-->
52
+
53
+ <noscript><div style="position:absolute;top:0;left:0;background-color:#DADEAF;width:100%;text-align:center;font-size:10px;font-family:verdana,arial,helvetica,sans-serif;padding:5px 0px;color:#193105;">Please note: JavaScript (scripting) must be enabled for this site to work as intended.</div></noscript>
54
+
55
+
56
+
57
+ <style>
58
+ .AutoCompleteBackground
59
+ {
60
+ background-color:white;
61
+ }
62
+ .AutoCompleteHighlight
63
+ {
64
+ background-color:#D6DE9D;
65
+ }
66
+ #theDiv {width:215px;background-color:white;white-space:nowrap; overflow:hidden;z-index:1000 !important;}
67
+ #theDiv2 {width:215px;background-color:white;white-space:nowrap; overflow:hidden;z-index:1000 !important;}
68
+ </style>
69
+
70
+ <script type="text/javascript" src="/ssi/primary.js"></script>
71
+ <table border="0" cellpadding="0" cellspacing="0" width="774"><tr><td><a href="/english.html"><img src="/ssi/images/logo.gif" width="97" height="64" border="0"></a></td><td><table border="0" cellpadding="0" cellspacing="0" width="677"><tr><td>
72
+ <img src="/images/spacer.gif" width="677" height="16" border="0"></td></tr><tr><td>
73
+ <table border="0" cellpadding="0" cellspacing="0" width="677"><tr>
74
+ <td title="Discover" style="cursor:pointer;" onclick="document.location.href='/discover/index.shtml';"><a id="graphic-discover" title="Discover" href="/discover/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c2','','/ssi/images/topnav_r2_c2_f2.gif',1);" ><img name="topnav_r2_c2" src="/ssi/images/topnav_r2_c2.gif" width="84" height="22" border="0" alt="Discover"></a></td>
75
+ <td title="FOOD &amp; DRINK" style="cursor:pointer;" onclick="document.location.href='/fooddrink/index.shtml';"><a id="graphic-fooddrink" title="FOOD &amp; DRINK" href="/fooddrink/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c3','','/ssi/images/topnav_r2_c3_f2.gif',1);" ><img name="topnav_r2_c3" src="/ssi/images/topnav_r2_c3.gif" width="115" height="22" border="0" alt="FOOD &amp; DRINK"></a></td>
76
+ <td title="Products" style="cursor:pointer;" onclick="document.location.href='/products/index.shtml';"><a id="graphic-products" title="Products" href="/products/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c4','','/ssi/images/topnav_r2_c4_f2.gif',1);" ><img name="topnav_r2_c4" src="/ssi/images/topnav_r2_c4.gif" width="86" height="22" border="0" alt="Products"></a></td>
77
+ <td title="Events & Courses | Podcasts | Planning Tips | The Basics" style="cursor:pointer;" onclick="document.location.href='/learn/index.shtml';"><a id="graphic-learn" title="Events & Courses | Podcasts | Planning Tips | The Basics" href="/learn/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c5','','/ssi/images/topnav_r2_c5_f2.gif',1);" ><img name="topnav_r2_c5" src="/ssi/images/topnav_r2_c5.gif" width="68" height="22" border="0" alt="Events & Courses | Podcasts | Planning Tips | The Basics"></a></td>
78
+ <td title="Gifts" style="cursor:pointer;" onclick="document.location.href='/gifts/index.shtml';"><a id="graphic-gifts" title="Gifts" href="/gifts/index.shtml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('topnav_r2_c6','','/ssi/images/topnav_r2_c6_f2.gif',1);" ><img name="topnav_r2_c6" src="/ssi/images/topnav_r2_c6.gif" width="59" height="22" border="0" alt="Gifts"></a></td>
79
+ <td title="Search"><a id="graphic-search" title="Search"><img name="topnav_r2_c7" src="/ssi/images/topnav_r2_c7.gif" width="72" height="22" border="0" alt="Search"></a></td>
80
+
81
+ <td>
82
+ <form name="quickSearchForm" id="quickSearchForm" method="get" action="/lcbo-ear/lcbo/product/searchResults.do" onsubmit="quickSearchForm_checkNameOrNumber()" style="padding: 0; margin: 0;">
83
+ <div style="position:relative;overflow:visible;cursor:pointer;">
84
+ <input name="ITEM_NAME" id="ITEM_NAME" value="Product Name or Item #" type="text" autocomplete="off" style="border: 1px solid black; font-size: 9px; height: 20px; padding-top:3px; font-family: arial;/*\*//*/height: 15px;/**/" size="22" onfocus="this.value=''">
85
+ <div id="theDiv" style="padding:4px;position:absolute;left:0px;top:21px;visibility:hidden;border:solid #D6DE9D 1px;background-color:white;z-index:1;font-family:arial;font-size:10px;">
86
+ </div>
87
+ </div>
88
+ <input name="ITEM_NUMBER" type="hidden" value="">
89
+ <input name="language" type="hidden" value="EN">
90
+ </form>
91
+ </td>
92
+
93
+ <td><img src="/images/spacer.gif" width="3" height="22" border="0"></td>
94
+ <td><a href="#" onclick="quickSearchForm_checkNameOrNumber(); quickSearchForm.submit()" target="_self"><img src="/ssi/images/topnav_r2_c10.gif" width="22" height="22" border="0" alt="Go"></a></td>
95
+ <td><img src="/images/spacer.gif" width="26" height="22" border="0"></td></tr></table></td></tr>
96
+
97
+ <tr><td><img src="/images/spacer.gif" width="677" height="16" border="0"></td></tr></table></td></tr></table>
98
+
99
+ <script type="text/javascript" src="/lcbo-ear/js/typeAhead/Http.js"></script>
100
+ <script type="text/javascript" src="/lcbo-ear/js/typeAhead/QuickSearchForm.js"></script>
101
+ <script type="text/javascript">
102
+ quickSearchForm_setLanguage("EN");
103
+ quickSearchForm_setItemnameResults("15");
104
+ quickSearchForm_setItemnameLength("32");
105
+ var set_inputForm_setItemnameResults = false;
106
+ </script>
107
+ <!--[if lt IE 8]>
108
+ <script type="text/javascript">
109
+ quickSearchForm_setItemnameResults("1");
110
+ </script>
111
+ <![endif]-->
112
+
113
+ <!--End of Primary SSI file//-->
114
+
115
+
116
+ </td>
117
+ </tr>
118
+ <tr>
119
+ <td>
120
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
121
+ <tr>
122
+ <td>&nbsp;</td>
123
+ <td>
124
+
125
+ <style>
126
+ #2nd_storesearch {color:#cccc99;}
127
+ </style>
128
+ <font size="1" face="Verdana, Arial, Helvetica, sans-serif">
129
+ <a id="2nd_storesearch" href="/storesearch/">Store Search</a>
130
+ </font>
131
+
132
+ </td>
133
+ <td>&nbsp;</td>
134
+ </tr>
135
+ <tr>
136
+ <td colspan="3"><img name="nav_rde_r1_c2"
137
+ src="/images/products/nav_rde_r1_c2.gif" width="25" height="4"
138
+ border="0"></td>
139
+ </tr>
140
+ <tr>
141
+ <td><img name="nav_rde_r1_c2"
142
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
143
+ border="0"></td>
144
+ <td><img name="nav_rde_r1_c2"
145
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
146
+ border="0"></td>
147
+ <td><img name="nav_rde_r1_c2"
148
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
149
+ border="0"></td>
150
+ </tr>
151
+ <tr>
152
+ <td colspan="3"><img name="nav_rde_r1_c2"
153
+ src="/images/products/images/nav_rde_r1_c2.gif" width="25"
154
+ height="6" border="0"></td>
155
+ </tr>
156
+ <tr>
157
+ <td>&nbsp;</td>
158
+ <td>
159
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
160
+ <tr>
161
+ <td width="207" valign="top">
162
+ <table width="11%" border="0" cellspacing="0" cellpadding="0">
163
+ <tr>
164
+ <td><img name="food_drink_r1_c1"
165
+ src="/images/storesearch/lcbo_store.gif" width="236"
166
+ height="189" border="0" alt="LCBO Store"></td>
167
+ </tr>
168
+ <tr>
169
+ <td><img name="food_drink_r2_c1"
170
+ src="/images/storesearch/store_info.gif" width="236"
171
+ height="84" border="0" alt="Store Info"></td>
172
+ </tr>
173
+ </table>
174
+ </td>
175
+ <td width="5">&nbsp;</td>
176
+ <td width="479">
177
+ <table width="478" border="0" cellspacing="0" cellpadding="0"
178
+ class="border">
179
+ <tr>
180
+ <td height="271" valign="top">
181
+ <table width="100%" border="0" cellspacing="0"
182
+ cellpadding="10">
183
+ <tr>
184
+ <td><!--content starts here-->
185
+ <table width="100%" border="0" cellspacing="0"
186
+ cellpadding="0">
187
+ <!--printer friendly starts here-->
188
+ <tr>
189
+ <td width="50%">&nbsp;</td>
190
+ <td class="main_font" width="50%" valign="top">
191
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
192
+ <tr>
193
+ <td class="main_font" valign="top" align="right"><a href="javascript:PrintItemDetails();"><img src="/images/food_drink/green_arrow.gif" border="0"/>Printer friendly version</a></td>
194
+ </tr>
195
+ </table>
196
+ </td>
197
+ </tr>
198
+ <!--printer friendly ends here-->
199
+ <tr>
200
+ <td width="50%" valign="top">
201
+ <table width="100%" border="0" cellspacing="0"
202
+ cellpadding="0">
203
+
204
+
205
+
206
+
207
+
208
+ <tr>
209
+ <td width="48%"><span class="main_font"><font
210
+ color="#859234" class="main_font"><b>LCBO Store #&nbsp;444:</b></font></span><br>
211
+ </tr>
212
+
213
+
214
+ <tr>
215
+ <td><img name="nav_rde_r1_c2"
216
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
217
+ height="4" border="0"></td>
218
+ </tr>
219
+ <tr>
220
+ <td width="48%" class="main_font"><i>KENNEDY & SHEPPARD (AGINCOURT MALL)</i></td>
221
+ </tr>
222
+ <tr>
223
+ <td class="main_font"><img name="nav_rde_r1_c2"
224
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
225
+ height="4" border="0"></td>
226
+ </tr>
227
+ <tr>
228
+ <td width="48%" class="main_font">2356 KENNEDY ROAD,
229
+
230
+ AGINCOURT MALL, </td>
231
+ </tr>
232
+ <tr>
233
+ <td class="main_font"><img name="nav_rde_r1_c2"
234
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
235
+ height="4" border="0"></td>
236
+ </tr>
237
+ <tr>
238
+ <td width="48%" class="main_font">TORONTO-SCARBOROUGH,
239
+
240
+
241
+
242
+ M1T 3H1</td>
243
+ </tr>
244
+ <tr>
245
+ <td class="main_font"><img name="nav_rde_r1_c2"
246
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
247
+ height="4" border="0"></td>
248
+ </tr>
249
+ <tr>
250
+ <td width="48%" class="main_font">Telephone: (416)
251
+ 291-5304</td>
252
+ </tr>
253
+ <tr>
254
+ <td class="main_font"><img name="nav_rde_r1_c2"
255
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
256
+ height="4" border="0"></td>
257
+ </tr>
258
+ <tr>
259
+
260
+
261
+ <td width="48%" class="main_font">Fax: (416)
262
+ 291-0246</td>
263
+
264
+
265
+ </tr>
266
+ <tr>
267
+ <td><img name="nav_rde_r1_c2"
268
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
269
+ height="12" border="0"></td>
270
+ </tr>
271
+ <tr>
272
+ <td width="48%">
273
+ <p><a
274
+ href="http://maps.google.ca/maps?q=43.7838,-79.2902&hl=EN"
275
+ name="Show Map" target="lcbo_showmap"><img
276
+ src="/images/storesearch/showmap.gif" width=144
277
+ height=20 border=0 alt=""></a></p>
278
+ </td>
279
+ </tr>
280
+ </table>
281
+ </td>
282
+ <td width="50%" valign="top">
283
+ <table border="0" cellspacing="0" cellpadding="0">
284
+ <tr>
285
+ <td colspan="2"><font color="#546415"><span
286
+ class="main_font"><b><font color="#859234"
287
+ class="main_font">HOURS OF OPERATION</font></b></span></font></td>
288
+ </tr>
289
+ <tr>
290
+ <td colspan="2"><img name="nav_rde_r1_c2"
291
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
292
+ height="4" border="0"></td>
293
+ </tr>
294
+ <tr>
295
+ <td class="main_font" align="left">Sunday:&nbsp;</td>
296
+
297
+ <td class="main_font" align="right">
298
+ 12:00 - 17:00
299
+
300
+ </td>
301
+ </tr>
302
+ <tr>
303
+ <td colspan="2" class="main_font"><img
304
+ name="nav_rde_r1_c2"
305
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
306
+ height="4" border="0"></td>
307
+ </tr>
308
+ <tr>
309
+ <td class="main_font" align="left">Monday:&nbsp;</td>
310
+
311
+ <td class="main_font" align="right">
312
+ 09:30 - 22:00
313
+
314
+ </td>
315
+ </tr>
316
+ <tr>
317
+ <td colspan="2" class="main_font"><img
318
+ name="nav_rde_r1_c2"
319
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
320
+ height="4" border="0"></td>
321
+ </tr>
322
+ <tr>
323
+ <td class="main_font" align="left">Tuesday:&nbsp;</td>
324
+
325
+ <td class="main_font" align="right">
326
+ 09:30 - 22:00
327
+
328
+ </td>
329
+ </tr>
330
+ <tr>
331
+ <td colspan="2" class="main_font"><img
332
+ name="nav_rde_r1_c2"
333
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
334
+ height="4" border="0"></td>
335
+ </tr>
336
+ <tr>
337
+ <td class="main_font" align="left">Wednesday:&nbsp;</td>
338
+
339
+ <td class="main_font" align="right">
340
+ 09:30 - 22:00
341
+
342
+ </td>
343
+ </tr>
344
+ <tr>
345
+ <td colspan="2" class="main_font"><img
346
+ name="nav_rde_r1_c2"
347
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
348
+ height="4" border="0"></td>
349
+ </tr>
350
+ <tr>
351
+ <td class="main_font" align="left">Thursday:&nbsp;</td>
352
+
353
+ <td class="main_font" align="right">
354
+ 09:30 - 22:00
355
+
356
+ </td>
357
+ </tr>
358
+ <tr>
359
+ <td colspan="2" class="main_font"><img
360
+ name="nav_rde_r1_c2"
361
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
362
+ height="4" border="0"></td>
363
+ </tr>
364
+ <tr>
365
+ <td class="main_font" align="left">Friday:&nbsp;</td>
366
+
367
+ <td class="main_font" align="right">
368
+ 09:30 - 22:00
369
+
370
+ </td>
371
+ </tr>
372
+ <tr>
373
+ <td colspan="2" class="main_font"><img
374
+ name="nav_rde_r1_c2"
375
+ src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
376
+ height="4" border="0"></td>
377
+ </tr>
378
+ <tr>
379
+ <td class="main_font" align="left">Saturday:&nbsp;</td>
380
+
381
+ <td class="main_font" align="right">
382
+ 09:30 - 22:00
383
+
384
+ </td>
385
+ </tr>
386
+ </table>
387
+ </td>
388
+ </tr>
389
+ </table>
390
+ <br>
391
+ <table width="100%" border="0" cellspacing="0" cellpadding="0">
392
+ <tr>
393
+ <td colspan="2" valign="top"><font color="#546415"><span
394
+ class="main_font"><b><font color="#859234"
395
+ class="main_font">This store has the following features:</font></b></span></font></td>
396
+ </tr>
397
+
398
+ <tr>
399
+ <td width="50%" valign="top">
400
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
401
+ <tr>
402
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
403
+ </tr>
404
+ <!-- parking -->
405
+ <tr>
406
+ <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;parking</td>
407
+ </tr>
408
+ <tr>
409
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
410
+ </tr>
411
+ <!-- transit access -->
412
+ <tr>
413
+ <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;transit access</td>
414
+ </tr>
415
+ <tr>
416
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
417
+ </tr>
418
+ <!-- wheelchair accessibility -->
419
+ <tr>
420
+ <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;wheelchair accessibility</td>
421
+ </tr>
422
+ <tr>
423
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
424
+ </tr>
425
+ <!-- bilingual services -->
426
+ <tr>
427
+ <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" >&nbsp;bilingual services</td>
428
+ </tr>
429
+ <tr>
430
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
431
+ </tr>
432
+ <!-- wine consultant -->
433
+ <tr>
434
+ <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;product consultant</td>
435
+ </tr>
436
+ <tr>
437
+ <td class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="12" border="0"></td>
438
+ </tr>
439
+ <tr>
440
+ <td width="48%" align="left"><a href="javascript:history.go(-1)"><img
441
+ src="/images/storesearch/returntoprevious.gif"
442
+ width="144" height="20" border="0"
443
+ alt="Return to Previous Page"></a></td>
444
+ </tr>
445
+ </table>
446
+ </td>
447
+ <td width="50%" valign="top">
448
+ <table width="100%" border="0" cellpadding="0" cellspacing="0">
449
+ <tr>
450
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
451
+ </tr>
452
+ <!-- tasting bar -->
453
+ <tr>
454
+ <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;a tasting bar</td>
455
+ </tr>
456
+ <tr>
457
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
458
+ </tr>
459
+ <tr>
460
+ <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" >&nbsp;a beer cold room</td>
461
+ </tr>
462
+ <tr>
463
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
464
+ </tr>
465
+ <tr>
466
+ <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;special occasion permits</td>
467
+ </tr>
468
+ <tr>
469
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
470
+ </tr>
471
+ <tr>
472
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
473
+ </tr>
474
+ <tr>
475
+ <td colspan="2" class="main_font"><input type="checkbox" name="checkbox" disabled value="checkbox" checked>&nbsp;a vintages corner</td>
476
+ </tr>
477
+ <tr>
478
+ <td colspan="2" class="main_font"><img name="nav_rde_r1_c2" src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="4" border="0"></td>
479
+ </tr>
480
+
481
+ </table>
482
+ </td>
483
+ </tr>
484
+ </table>
485
+ <!--content ends here--></td>
486
+ </tr>
487
+ </table>
488
+ </td>
489
+ </tr>
490
+ </table>
491
+ </td>
492
+ </tr>
493
+ </table>
494
+ </td>
495
+ <td>&nbsp;</td>
496
+ </tr>
497
+ <tr>
498
+ <td>&nbsp;</td>
499
+ <td>&nbsp;</td>
500
+ <td>&nbsp;</td>
501
+ </tr>
502
+ <tr>
503
+ <td>&nbsp;</td>
504
+
505
+ <!--2008//-->
506
+
507
+ <script type="text/javascript" src="/ssi/footer.js"></script>
508
+
509
+ <!--needed structure//--><td><!--needed structure//-->
510
+
511
+ <table WIDTH="100%" border="0" cellpadding="0" cellspacing="0">
512
+
513
+ <tr>
514
+
515
+ <td>
516
+ <span class="textlinks">
517
+ <a id="aboutlcbo" href="/aboutlcbo/index.shtml">About LCBO</a>&nbsp;|
518
+ <a id="accessibility" href="/accessibility/index.shtml">Accessibility</a>&nbsp;|
519
+ <a id="socialresponsibility" href="/socialresponsibility/index.shtml">Social Responsibility</a>&nbsp;|
520
+ <a id="careers" href="/careers/index.shtml">Careers</a>&nbsp;|
521
+ <a id="vintages" href="/vintages/index.shtml" target="_blank">VINTAGES</a>&nbsp;|
522
+ <a id="contactus" href="/contactus/index.shtml">Contact Us</a>&nbsp;|
523
+ <a id="sitemap" href="/sitemap/index.shtml">Site Map</a>&nbsp;|
524
+ <a id="storesearch" href="/storesearch/index.shtml">Store Search</a>
525
+
526
+
527
+
528
+ <script>
529
+ var win = null;
530
+ function NewWindowPopBox(mypage,myname,w,h,scroll){
531
+ LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
532
+ TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
533
+ settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=yes'
534
+ win = window.open(mypage,myname,settings)}
535
+ </script>
536
+
537
+ <!--
538
+ <a id="fsi" target="_blank" href="/main/files/fsi/correction.html" onclick="NewWindow(this.href,'xmlPop','546','398','yes');return false" style="color:#E71838;" >Correction Notice</a>
539
+ //-->
540
+ </span></td>
541
+
542
+ <script src="/ssi/footer_fsi.js"></script>
543
+
544
+ </tr></table>
545
+
546
+ <!--needed structure//--></td><!--needed structure//-->
547
+
548
+ <td>&nbsp;</td>
549
+ </tr>
550
+ <tr>
551
+ <td>&nbsp;</td>
552
+ <td>&nbsp;</td>
553
+ <td>&nbsp;</td>
554
+ </tr>
555
+ </table>
556
+ </td>
557
+ </tr>
558
+ </table>
559
+ </td>
560
+ </tr>
561
+ </table>
562
+
563
+ <!--2009//-->
564
+
565
+ <!--copyright notice begins//-->
566
+
567
+ <div align="center"><br><table width="774" border="0" cellspacing="0" cellpadding="0"><tr><td width="10"><img src="/images/spacer.gif" width="25" height="4" border="0"></td><td width="764"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td><span class="textlinks" style="color:#666666">&copy; 2000/2011 LCBO</span><span class="textlinks"> | <a id="privacy" href="/privacy/index.shtml">Privacy Policy</a> | <a id="terms" href="/terms/index.shtml">Terms &amp; Conditions</a> | <a id="language" href="/french.html">
568
+ Français</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.doingbusinesswithlcbo.com/" target="_blank">TRADE RESOURCES</a></span></td><td align="right"><a href="/bagitback/bib_en.shtml" target="_blank"><img onmouseover="this.src='/ssi/images/bagitback_on.gif';" onmouseout="this.src='/ssi/images/bagitback_off.gif';" src="/ssi/images/bagitback_off.gif" width="110" height="14" border="0" alt="BAGITBACK.CA" style="margin-right:25px;"></a></td></tr></table></td></tr><tr><td width="10">&nbsp;</td><td width="764">&nbsp;</td></tr></table></div>
569
+
570
+ <!--copyright notice ends//-->
571
+
572
+ <!--Suppress IE6 Image toolbar//-->
573
+ <META HTTP-EQUIV="imagetoolbar" CONTENT="no">
574
+
575
+ <script type="text/javascript">
576
+ if (set_inputForm_setItemnameResults) {
577
+ inputForm_setItemnameResults("15");
578
+ inputForm_setItemnameLength("32");
579
+ }
580
+ </script>
581
+ <!--[if lt IE 8]>
582
+ <script type="text/javascript">
583
+ if (set_inputForm_setItemnameResults) {
584
+ inputForm_setItemnameResults("1"); }
585
+ </script>
586
+ <![endif]-->
587
+
588
+ <script type="text/javascript">
589
+ var _gaq = _gaq || [];
590
+ _gaq.push(['_setAccount', 'UA-553500-6']);
591
+ _gaq.push(['_trackPageview']);
592
+ </script>
593
+ <script type="text/javascript"> (function() {
594
+ var ga = document.createElement('script'); ga.type =
595
+ 'text/javascript'; ga.async = true;
596
+ ga.src = ('https:' == document.location.protocol ?
597
+ 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
598
+ var s = document.getElementsByTagName('script')[0];
599
+ s.parentNode.insertBefore(ga, s);
600
+ })();
601
+ </script>
602
+
603
+
604
+
605
+
606
+ </body>
607
+ </html>