lcbo 1.2.0 → 1.2.1
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/CHANGELOG.md +4 -0
- data/lib/lcbo/pages/store_page.rb +53 -88
- data/lib/lcbo/version.rb +1 -1
- data/spec/pages/store_pages/1.html +433 -190
- data/spec/pages/store_pages/2.html +431 -189
- data/spec/pages/store_pages.yml +59 -34
- metadata +10 -10
@@ -1,3 +1,4 @@
|
|
1
|
+
|
1
2
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
3
|
|
3
4
|
|
@@ -20,9 +21,175 @@
|
|
20
21
|
|
21
22
|
<html>
|
22
23
|
<head>
|
24
|
+
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true&language=en">"></script>
|
25
|
+
<script type="text/javascript" src="/global/jquery.js"></script>
|
26
|
+
<script type="text/javascript">
|
27
|
+
$(document).ready(function(){
|
28
|
+
var map;
|
29
|
+
var mapBounds;
|
30
|
+
var myOptions = new Array();
|
31
|
+
// array to contain markers
|
32
|
+
var storeMarker = null;
|
33
|
+
var storeLocation = new google.maps.LatLng($("#latitude").val(), $("#longitude").val());
|
34
|
+
var latOffset = parseFloat($("#latitude").val()) + 0.010;
|
35
|
+
var locationOffset = new google.maps.LatLng(latOffset.toString(), $("#longitude").val());
|
23
36
|
|
37
|
+
|
38
|
+
function loadMap() {
|
39
|
+
if (undefined == map) {
|
40
|
+
|
41
|
+
myOptions = {
|
42
|
+
zoom: 13,
|
43
|
+
center: storeLocation,
|
44
|
+
mapTypeControl: true,
|
45
|
+
navigationControlOptions: {style: google.maps.NavigationControlStyle.DEFAULT},
|
46
|
+
mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR},
|
47
|
+
mapTypeId: google.maps.MapTypeId.ROADMAP
|
48
|
+
};
|
49
|
+
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
|
50
|
+
}
|
51
|
+
map.setCenter(locationOffset);
|
52
|
+
mapBounds = new google.maps.LatLngBounds();
|
53
|
+
}
|
54
|
+
|
55
|
+
function addMarker(location) {
|
56
|
+
storeMarker = new google.maps.Marker({
|
57
|
+
position: storeLocation,
|
58
|
+
map: map
|
59
|
+
});
|
60
|
+
}
|
61
|
+
|
62
|
+
//highlights the current day
|
63
|
+
function highlightDay(row) {
|
64
|
+
var d=new Date();
|
65
|
+
if (d.getDay() == row) {
|
66
|
+
var col1 = $("#row"+row+"Day");
|
67
|
+
col1.attr('class','hoursToday');
|
68
|
+
var col2 = $("#row"+row+"Time");
|
69
|
+
col2.attr('class','hoursToday');
|
70
|
+
}
|
71
|
+
|
72
|
+
}
|
73
|
+
|
74
|
+
function markOpen(row) {
|
75
|
+
var col3 = $("#row"+row+"Flag");
|
76
|
+
col3.attr('class','hoursOpen');
|
77
|
+
col3.html("OPEN");
|
78
|
+
}
|
79
|
+
|
80
|
+
function markClosed(row) {
|
81
|
+
var col3 = $("#row"+row+"Flag");
|
82
|
+
col3.attr('class','hoursClosed');
|
83
|
+
col3.html("CLOSED");
|
84
|
+
}
|
85
|
+
|
86
|
+
//checks if the store is open today
|
87
|
+
function checkOpen(day, timeOpen, timeClose) {
|
88
|
+
var d=new Date();
|
89
|
+
var hours = d.getHours();
|
90
|
+
var minutes = d.getMinutes();
|
91
|
+
var theTime = hours*100+minutes;
|
92
|
+
return ((d.getDay() == day) && (theTime < timeClose) && (theTime > timeOpen));
|
93
|
+
}
|
94
|
+
|
95
|
+
//checks if the store is closed today
|
96
|
+
function checkIfClosedToday(day, timeOpen, timeClose) {
|
97
|
+
var d=new Date();
|
98
|
+
var hours = d.getHours();
|
99
|
+
var minutes = d.getMinutes();
|
100
|
+
var theTime = hours*100+minutes;
|
101
|
+
return ((d.getDay() == day) && ((theTime > timeClose) || (theTime < timeOpen)));
|
102
|
+
}
|
103
|
+
|
104
|
+
//marks the store as being either open or closed
|
105
|
+
function highlightIfOpen() {
|
106
|
+
var timeOpen;
|
107
|
+
var timeClosed;
|
108
|
+
for (var i=0; i < 7; i++) {
|
109
|
+
timeOpen = $("#"+i+"Open").val().replace(/:/gi, "");
|
110
|
+
timeClosed = $("#"+i+"Close").val().replace(/:/gi, "");
|
111
|
+
highlightDay(i);
|
112
|
+
if (checkOpen(i,timeOpen, timeClosed)) {
|
113
|
+
markOpen(i);
|
114
|
+
}
|
115
|
+
if (checkIfClosedToday(i, timeOpen, timeClosed)) {
|
116
|
+
markClosed(i);
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
}
|
121
|
+
|
122
|
+
function getAnnouncements() {
|
123
|
+
// clear the current selection list
|
124
|
+
$("#store_annoucements").html(" ");
|
125
|
+
|
126
|
+
queryString = "language="+"en";
|
127
|
+
$.ajax({
|
128
|
+
type: "GET",
|
129
|
+
url: "/storesearch/store_targetting/messages.xml",
|
130
|
+
async: true,
|
131
|
+
data: queryString,
|
132
|
+
dataType: "xml",
|
133
|
+
success: function(xml) {
|
134
|
+
|
135
|
+
$(xml).find('description').each(function(index){
|
136
|
+
if ($(this).attr("id")== "444") {
|
137
|
+
var storeText = $(this).text();
|
138
|
+
$("#store_announcements").html(storeText);
|
139
|
+
$("#announcements_container").show();
|
140
|
+
}
|
141
|
+
|
142
|
+
});
|
143
|
+
},
|
144
|
+
error: function(jqXHR, textStatus, errorThrown) { }
|
145
|
+
});
|
146
|
+
}
|
147
|
+
|
148
|
+
loadMap();
|
149
|
+
addMarker();
|
150
|
+
highlightIfOpen();
|
151
|
+
getAnnouncements();
|
152
|
+
$("#directionsImg").click( function() {
|
153
|
+
window.open($("#directionsLink").val());
|
154
|
+
});
|
155
|
+
var details = $("#infoWindow").html();
|
156
|
+
var html = '<table cellpadding="0" cellspacing="0" style="text-align: left;">'+details+'</table>';
|
157
|
+
var infowindow = new google.maps.InfoWindow({
|
158
|
+
content: html,
|
159
|
+
maxWidth: 200
|
160
|
+
});
|
161
|
+
google.maps.event.addListener(storeMarker, 'click', function() {
|
162
|
+
infowindow.open(map,storeMarker);
|
163
|
+
});
|
164
|
+
infowindow.open(map,storeMarker);
|
165
|
+
|
166
|
+
});
|
167
|
+
|
168
|
+
function PrintItemDetails(isVintages) {
|
169
|
+
if (isVintages == true) {
|
170
|
+
window.location="/lcbo-ear/jsp/vin_storeinfo_print.jsp?STORE=444&language=en";
|
171
|
+
} else {
|
172
|
+
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");
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
</script>
|
177
|
+
|
178
|
+
<style type="text/css">
|
179
|
+
|
180
|
+
|
181
|
+
</style>
|
24
182
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
25
183
|
<meta http-equiv=Expires content="Mon, 01 Jan 1996 01:01:01 GMT">
|
184
|
+
|
185
|
+
<meta property="fb:admins" content="595541334">
|
186
|
+
<meta property="og:title" content="LCBO | Store Information">
|
187
|
+
<meta property="og:description" content="I found my favourite LCBO store! Use the LCBO Store Search tool and find your favourite LCBO store.">
|
188
|
+
<meta property="og:type" content="website">
|
189
|
+
<meta property="og:image" content="http://www.lcbo.com/lcbo.jpg">
|
190
|
+
<meta property="og:site_name" content="LCBO.com">
|
191
|
+
<meta property="og:url" content="http://www.lcbo.com/">
|
192
|
+
|
26
193
|
<title>LCBO Store Information</title>
|
27
194
|
|
28
195
|
<script language="Javascript">
|
@@ -33,7 +200,8 @@ function PrintItemDetails() {
|
|
33
200
|
|
34
201
|
</script>
|
35
202
|
|
36
|
-
<link rel="stylesheet" href="/storesearch/lcbo.css" type="text/css"
|
203
|
+
<link rel="stylesheet" href="/storesearch/lcbo.css" type="text/css" />
|
204
|
+
<link rel="stylesheet" href="/storesearch/storeInfo_map_LCBO.css" type="text/css" />
|
37
205
|
<base target="_top" />
|
38
206
|
</head>
|
39
207
|
|
@@ -48,40 +216,32 @@ function PrintItemDetails() {
|
|
48
216
|
<tr>
|
49
217
|
<td>
|
50
218
|
|
51
|
-
<!--Beginning of Primary SSI file
|
219
|
+
<!--Beginning of Primary SSI file 2012//-->
|
52
220
|
|
53
221
|
<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
222
|
|
55
|
-
|
56
|
-
|
57
223
|
<style>
|
58
|
-
|
59
|
-
{
|
60
|
-
|
61
|
-
}
|
62
|
-
.AutoCompleteHighlight
|
63
|
-
{
|
64
|
-
background-color:#D6DE9D;
|
65
|
-
}
|
224
|
+
html {overflow-y: scroll;}
|
225
|
+
.AutoCompleteBackground {background-color:white;}
|
226
|
+
.AutoCompleteHighlight {background-color:#D6DE9D;}
|
66
227
|
#theDiv {width:215px;background-color:white;white-space:nowrap; overflow:hidden;z-index:1000 !important;}
|
67
228
|
#theDiv2 {width:215px;background-color:white;white-space:nowrap; overflow:hidden;z-index:1000 !important;}
|
68
229
|
</style>
|
69
230
|
|
70
231
|
<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>
|
232
|
+
<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><img src="/images/spacer.gif" width="677" height="16" border="0"></td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" width="677"><tr><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
233
|
<td title="FOOD & DRINK" style="cursor:pointer;" onclick="document.location.href='/fooddrink/index.shtml';"><a id="graphic-fooddrink" title="FOOD & 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 & DRINK"></a></td>
|
76
234
|
<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
235
|
<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>
|
236
|
+
|
78
237
|
<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
|
-
|
238
|
+
|
239
|
+
<td><img src="/images/spacer.gif" width="20" height="22" border="0"></td>
|
80
240
|
|
81
241
|
<td>
|
82
242
|
<form name="quickSearchForm" id="quickSearchForm" method="get" action="/lcbo-ear/lcbo/product/searchResults.do" onsubmit="quickSearchForm_checkNameOrNumber()" style="padding: 0; margin: 0;">
|
83
243
|
<div style="position:relative;overflow:visible;cursor:pointer;">
|
84
|
-
<input name="ITEM_NAME" id="ITEM_NAME" value="Product Name or
|
244
|
+
<input name="ITEM_NAME" id="ITEM_NAME" value="Product Name, Item # or UPC code" type="text" autocomplete="off" style="color:#535C2C;border: 1px solid #D6DE9D; font-size: 9px; height: 20px; width:192px;padding-top:3px; padding-left:3px; font-family: arial,helvetica,sans-serif;" size="41" onfocus="this.value=''">
|
85
245
|
<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
246
|
</div>
|
87
247
|
</div>
|
@@ -92,7 +252,7 @@ function PrintItemDetails() {
|
|
92
252
|
|
93
253
|
<td><img src="/images/spacer.gif" width="3" height="22" border="0"></td>
|
94
254
|
<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="
|
255
|
+
<td><img src="/images/spacer.gif" width="28" height="22" border="0"></td></tr></table></td></tr>
|
96
256
|
|
97
257
|
<tr><td><img src="/images/spacer.gif" width="677" height="16" border="0"></td></tr></table></td></tr></table>
|
98
258
|
|
@@ -111,7 +271,6 @@ quickSearchForm_setItemnameResults("1");
|
|
111
271
|
<![endif]-->
|
112
272
|
|
113
273
|
<!--End of Primary SSI file//-->
|
114
|
-
|
115
274
|
|
116
275
|
</td>
|
117
276
|
</tr>
|
@@ -132,11 +291,7 @@ quickSearchForm_setItemnameResults("1");
|
|
132
291
|
</td>
|
133
292
|
<td> </td>
|
134
293
|
</tr>
|
135
|
-
|
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>
|
294
|
+
|
140
295
|
<tr>
|
141
296
|
<td><img name="nav_rde_r1_c2"
|
142
297
|
src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
|
@@ -148,11 +303,7 @@ quickSearchForm_setItemnameResults("1");
|
|
148
303
|
src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
|
149
304
|
border="0"></td>
|
150
305
|
</tr>
|
151
|
-
|
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>
|
306
|
+
|
156
307
|
<tr>
|
157
308
|
<td> </td>
|
158
309
|
<td>
|
@@ -162,7 +313,7 @@ quickSearchForm_setItemnameResults("1");
|
|
162
313
|
<table width="11%" border="0" cellspacing="0" cellpadding="0">
|
163
314
|
<tr>
|
164
315
|
<td><img name="food_drink_r1_c1"
|
165
|
-
src="/images/storesearch/lcbo_store.gif" width="236"
|
316
|
+
src="http://www.lcbo.com/images/storesearch/lcbo_store.gif" width="236"
|
166
317
|
height="189" border="0" alt="LCBO Store"></td>
|
167
318
|
</tr>
|
168
319
|
<tr>
|
@@ -171,6 +322,14 @@ quickSearchForm_setItemnameResults("1");
|
|
171
322
|
height="84" border="0" alt="Store Info"></td>
|
172
323
|
</tr>
|
173
324
|
</table>
|
325
|
+
|
326
|
+
<!-- Store Announcements -->
|
327
|
+
<div id="announcements_container" style="border: 1px solid #CCCCCC; width: 235px; margin-top: 10px; display: none;">
|
328
|
+
<div id="store_announcements" style="width: 100%; margin: 10px;">
|
329
|
+
</div>
|
330
|
+
</div>
|
331
|
+
<!-- Store Announcements -->
|
332
|
+
|
174
333
|
</td>
|
175
334
|
<td width="5"> </td>
|
176
335
|
<td width="479">
|
@@ -181,308 +340,392 @@ quickSearchForm_setItemnameResults("1");
|
|
181
340
|
<table width="100%" border="0" cellspacing="0"
|
182
341
|
cellpadding="10">
|
183
342
|
<tr>
|
184
|
-
<td
|
185
|
-
|
186
|
-
cellpadding="0">
|
343
|
+
<td style="text-align:center;">
|
344
|
+
<!--content starts here-->
|
345
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
187
346
|
<!--printer friendly starts here-->
|
188
347
|
<tr>
|
189
|
-
<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>
|
348
|
+
<td class="information_left" colspan="2"><span class="storeInfo_header">Store Information</span></td>
|
197
349
|
</tr>
|
198
|
-
<!--printer friendly ends here-->
|
350
|
+
<!--printer friendly ends here-->
|
351
|
+
|
199
352
|
<tr>
|
200
|
-
<td
|
201
|
-
<table width="100%" border="0" cellspacing="0"
|
202
|
-
cellpadding="0">
|
353
|
+
<td class="information_left" valign="top">
|
354
|
+
<table id="storeDetails" width="100%" border="0" cellspacing="0" cellpadding="0">
|
203
355
|
|
204
356
|
|
205
357
|
|
206
358
|
|
207
359
|
|
208
|
-
<tr>
|
209
|
-
<td
|
210
|
-
color="#859234" class="main_font"><b>LCBO Store # 444
|
360
|
+
<tr style="height: 30px;">
|
361
|
+
<td><span class="main_font"><font
|
362
|
+
color="#859234" class="main_font"><b>LCBO Store # 444 :</b></font></span>
|
363
|
+
</td>
|
211
364
|
</tr>
|
212
365
|
|
213
366
|
|
214
367
|
<tr>
|
215
|
-
<td
|
216
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
217
|
-
height="4" border="0"></td>
|
368
|
+
<td></td>
|
218
369
|
</tr>
|
219
370
|
<tr>
|
220
|
-
<td
|
371
|
+
<td class="main_font"><i>KENNEDY & SHEPPARD (AGINCOURT MALL)</i></td>
|
221
372
|
</tr>
|
222
373
|
<tr>
|
223
|
-
<td class="main_font"
|
224
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
225
|
-
height="4" border="0"></td>
|
374
|
+
<td class="main_font"></td>
|
226
375
|
</tr>
|
227
376
|
<tr>
|
228
|
-
<td
|
229
|
-
|
230
|
-
|
377
|
+
<td class="main_font">2356 KENNEDY ROAD
|
378
|
+
</td>
|
379
|
+
</tr>
|
380
|
+
|
381
|
+
<tr>
|
382
|
+
<td class="main_font">
|
383
|
+
AGINCOURT MALL
|
384
|
+
</td>
|
231
385
|
</tr>
|
386
|
+
|
387
|
+
|
232
388
|
<tr>
|
233
|
-
<td class="main_font"
|
234
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
235
|
-
height="4" border="0"></td>
|
389
|
+
<td class="main_font"></td>
|
236
390
|
</tr>
|
237
391
|
<tr>
|
238
|
-
<td
|
392
|
+
<td class="main_font">TORONTO-SCARBOROUGH,
|
239
393
|
|
240
394
|
|
241
395
|
|
242
|
-
M1T 3H1</td>
|
396
|
+
<nobr>M1T 3H1</nobr></td>
|
243
397
|
</tr>
|
244
398
|
<tr>
|
245
|
-
<td class="main_font"
|
246
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
247
|
-
height="4" border="0"></td>
|
399
|
+
<td class="main_font"></td>
|
248
400
|
</tr>
|
249
401
|
<tr>
|
250
|
-
<td
|
251
|
-
291-5304</td>
|
402
|
+
<td class="main_font"><span style="white-space: nowrap;">Telephone: 416-291-5304</span></td>
|
252
403
|
</tr>
|
253
404
|
<tr>
|
254
|
-
<td class="main_font"
|
255
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
256
|
-
height="4" border="0"></td>
|
405
|
+
<td class="main_font"></td>
|
257
406
|
</tr>
|
258
407
|
<tr>
|
259
408
|
|
260
409
|
|
261
|
-
<td
|
262
|
-
291-0246</td>
|
410
|
+
<td class="main_font"><span style="white-space: nowrap;">Fax: 416-291-0246</span></td>
|
263
411
|
|
264
412
|
|
265
413
|
</tr>
|
266
414
|
<tr>
|
267
|
-
<td
|
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>
|
415
|
+
<td></td>
|
279
416
|
</tr>
|
280
417
|
</table>
|
418
|
+
<!-- Table for info window -->
|
419
|
+
<table id="infoWindow" width="100%" border="0" cellspacing="0" cellpadding="0" style="display:none;">
|
420
|
+
|
421
|
+
<tr>
|
422
|
+
<td><font class="infoWindowStoreNumber" style="text-align: left;">LCBO Store # 444 :</font><br>
|
423
|
+
</td>
|
424
|
+
</tr>
|
425
|
+
|
426
|
+
|
427
|
+
<tr>
|
428
|
+
<td class="infoWindowTitle" style="text-align: left;">KENNEDY & SHEPPARD (AGINCOURT MALL)</td>
|
429
|
+
</tr>
|
430
|
+
<tr>
|
431
|
+
<td class="infoWindowBody" style="text-align: left;">2356 KENNEDY ROAD,
|
432
|
+
|
433
|
+
AGINCOURT MALL, </td>
|
434
|
+
</tr>
|
435
|
+
<tr>
|
436
|
+
<td class="infoWindowBody" style="text-align: left;">TORONTO-SCARBOROUGH,
|
437
|
+
|
438
|
+
|
439
|
+
|
440
|
+
<nobr>M1T 3H1</nobr></td>
|
441
|
+
</tr>
|
442
|
+
<tr>
|
443
|
+
<td class="infoWindowBody" style="text-align: left;">Telephone: 416-291-5304</td>
|
444
|
+
</tr>
|
445
|
+
</table>
|
446
|
+
<!-- Table for info window -->
|
447
|
+
|
448
|
+
|
449
|
+
|
281
450
|
</td>
|
282
|
-
<td
|
283
|
-
<table border="0" cellspacing="
|
284
|
-
<tr>
|
285
|
-
<td colspan="
|
451
|
+
<td class="information_right" valign="top">
|
452
|
+
<table border="0" cellspacing="0px" cellpadding="0px">
|
453
|
+
<tr style="height: 30px;">
|
454
|
+
<td colspan="4"><font color="#546415"><span
|
286
455
|
class="main_font"><b><font color="#859234"
|
287
456
|
class="main_font">HOURS OF OPERATION</font></b></span></font></td>
|
288
457
|
</tr>
|
289
458
|
<tr>
|
290
|
-
<td colspan="
|
291
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
292
|
-
height="4" border="0"></td>
|
459
|
+
<td colspan="4"></td>
|
293
460
|
</tr>
|
294
|
-
<tr>
|
295
|
-
<td class="
|
461
|
+
<tr id="row0">
|
462
|
+
<td id="row0Day" class="hours" align="left">Sunday:</td>
|
296
463
|
|
297
|
-
<td class="
|
298
|
-
12:00 -
|
464
|
+
<td id="row0Time" class="hours" align="left">
|
465
|
+
12:00 PM - 5:00 PM
|
299
466
|
|
300
467
|
</td>
|
468
|
+
<td style="width: 5px"></td>
|
469
|
+
<td style="width: 55px;" id="row0Flag" ></td>
|
301
470
|
</tr>
|
302
471
|
<tr>
|
303
|
-
<td colspan="
|
304
|
-
name="nav_rde_r1_c2"
|
305
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
306
|
-
height="4" border="0"></td>
|
472
|
+
<td colspan="4" class="hours"></td>
|
307
473
|
</tr>
|
308
|
-
<tr>
|
309
|
-
<td class="
|
474
|
+
<tr id="row1">
|
475
|
+
<td id="row1DAy" class="hours" align="left">Monday:</td>
|
310
476
|
|
311
|
-
<td class="
|
312
|
-
|
477
|
+
<td id="row1Time" class="hours" align="left">
|
478
|
+
10:00 AM - 10:00 PM
|
313
479
|
|
314
480
|
</td>
|
481
|
+
<td style="width: 5px"></td>
|
482
|
+
<td id="row1Flag" ></td>
|
315
483
|
</tr>
|
316
484
|
<tr>
|
317
|
-
<td colspan="
|
318
|
-
name="nav_rde_r1_c2"
|
319
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
320
|
-
height="4" border="0"></td>
|
485
|
+
<td colspan="4" class="hours"></td>
|
321
486
|
</tr>
|
322
|
-
<tr>
|
323
|
-
<td class="
|
487
|
+
<tr id="row2">
|
488
|
+
<td id="row2Day" class="hours" align="left">Tuesday:</td>
|
324
489
|
|
325
|
-
<td class="
|
326
|
-
|
490
|
+
<td id="row2Time" class="hours" align="left">
|
491
|
+
10:00 AM - 10:00 PM
|
327
492
|
|
328
493
|
</td>
|
494
|
+
<td style="width: 5px"></td>
|
495
|
+
<td id="row2Flag" ></td>
|
329
496
|
</tr>
|
330
497
|
<tr>
|
331
|
-
<td colspan="
|
332
|
-
name="nav_rde_r1_c2"
|
333
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
334
|
-
height="4" border="0"></td>
|
498
|
+
<td colspan="4" class="hours"></td>
|
335
499
|
</tr>
|
336
|
-
<tr>
|
337
|
-
<td class="
|
500
|
+
<tr id="row3">
|
501
|
+
<td id="row3Day" class="hours" align="left">Wednesday:</td>
|
338
502
|
|
339
|
-
<td class="
|
340
|
-
|
503
|
+
<td id="row3Time" class="hours" align="left">
|
504
|
+
10:00 AM - 10:00 PM
|
341
505
|
|
342
506
|
</td>
|
507
|
+
<td style="width: 5px"></td>
|
508
|
+
<td id="row3Flag" ></td>
|
343
509
|
</tr>
|
344
510
|
<tr>
|
345
|
-
<td colspan="
|
346
|
-
name="nav_rde_r1_c2"
|
347
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
348
|
-
height="4" border="0"></td>
|
511
|
+
<td colspan="4" class="hours"></td>
|
349
512
|
</tr>
|
350
|
-
<tr>
|
351
|
-
<td class="
|
513
|
+
<tr id="row4">
|
514
|
+
<td id="row4Day" class="hours" align="left">Thursday:</td>
|
352
515
|
|
353
|
-
<td class="
|
354
|
-
|
516
|
+
<td id="row4Time" class="hours" align="left">
|
517
|
+
10:00 AM - 10:00 PM
|
355
518
|
|
356
519
|
</td>
|
520
|
+
<td style="width: 5px"></td>
|
521
|
+
<td id="row4Flag" ></td>
|
357
522
|
</tr>
|
358
523
|
<tr>
|
359
|
-
<td colspan="
|
360
|
-
name="nav_rde_r1_c2"
|
361
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
362
|
-
height="4" border="0"></td>
|
524
|
+
<td colspan="4" class="hours"></td>
|
363
525
|
</tr>
|
364
|
-
<tr>
|
365
|
-
<td class="
|
526
|
+
<tr id="row5">
|
527
|
+
<td id="row5Day" class="hours" align="left">Friday:</td>
|
366
528
|
|
367
|
-
<td class="
|
368
|
-
|
529
|
+
<td id="row5Time" class="hours" align="left">
|
530
|
+
10:00 AM - 10:00 PM
|
369
531
|
|
370
532
|
</td>
|
533
|
+
<td style="width: 5px"></td>
|
534
|
+
<td id="row5Flag" ></td>
|
371
535
|
</tr>
|
372
536
|
<tr>
|
373
|
-
<td colspan="
|
374
|
-
name="nav_rde_r1_c2"
|
375
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
376
|
-
height="4" border="0"></td>
|
537
|
+
<td colspan="4" class="hours"></td>
|
377
538
|
</tr>
|
378
|
-
<tr>
|
379
|
-
<td class="
|
539
|
+
<tr id="row6">
|
540
|
+
<td id="row6Day" class="hours" align="left">Saturday:</td>
|
380
541
|
|
381
|
-
<td class="
|
382
|
-
|
542
|
+
<td id="row6Time" class="hours" align="left">
|
543
|
+
10:00 AM - 10:00 PM
|
383
544
|
|
384
545
|
</td>
|
546
|
+
<td style="width: 5px"></td>
|
547
|
+
<td id="row6Flag" ></td>
|
385
548
|
</tr>
|
386
549
|
</table>
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
550
|
+
</td>
|
551
|
+
</tr>
|
552
|
+
|
553
|
+
<tr>
|
554
|
+
<td colspan="2">
|
555
|
+
|
556
|
+
<input type="hidden" id="1Open" value="10:00" />
|
557
|
+
<input type="hidden" id="1Close" value="22:00" />
|
558
|
+
<input type="hidden" id="2Open" value="10:00" />
|
559
|
+
<input type="hidden" id="2Close" value="22:00" />
|
560
|
+
<input type="hidden" id="3Open" value="10:00" />
|
561
|
+
<input type="hidden" id="3Close" value="22:00" />
|
562
|
+
<input type="hidden" id="4Open" value="10:00" />
|
563
|
+
<input type="hidden" id="4Close" value="22:00" />
|
564
|
+
<input type="hidden" id="5Open" value="10:00" />
|
565
|
+
<input type="hidden" id="5Close" value="22:00" />
|
566
|
+
<input type="hidden" id="6Open" value="10:00" />
|
567
|
+
<input type="hidden" id="6Close" value="22:00" />
|
568
|
+
<input type="hidden" id="0Open" value="12:00" />
|
569
|
+
<input type="hidden" id="0Close" value="17:00" />
|
570
|
+
<br/>
|
571
|
+
<span style="text-align: center"><hr /></span>
|
572
|
+
</td>
|
573
|
+
</tr>
|
574
|
+
|
575
|
+
<tr style="height: 30px;">
|
576
|
+
<td colspan="2" valign="top"><font color="#546415"><span
|
577
|
+
class="main_font"><b><font color="#859234"
|
578
|
+
class="main_font">This store has the following features:</font></b></span></font></td>
|
579
|
+
</tr>
|
580
|
+
|
581
|
+
|
582
|
+
<tr>
|
583
|
+
<td class="information_left" >
|
584
|
+
<!-- Features -->
|
391
585
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
392
|
-
|
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>
|
586
|
+
|
397
587
|
|
398
588
|
<tr>
|
399
|
-
<td
|
589
|
+
<td valign="top">
|
400
590
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
401
591
|
<tr>
|
402
|
-
<td
|
592
|
+
<td class="feature"></td>
|
403
593
|
</tr>
|
404
594
|
<!-- parking -->
|
405
595
|
<tr>
|
406
|
-
<td
|
596
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> parking</td>
|
407
597
|
</tr>
|
408
598
|
<tr>
|
409
|
-
<td
|
599
|
+
<td class="feature"></td>
|
410
600
|
</tr>
|
411
601
|
<!-- transit access -->
|
412
602
|
<tr>
|
413
|
-
<td
|
603
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> transit access</td>
|
414
604
|
</tr>
|
415
605
|
<tr>
|
416
|
-
<td
|
606
|
+
<td class="feature"></td>
|
417
607
|
</tr>
|
418
608
|
<!-- wheelchair accessibility -->
|
419
609
|
<tr>
|
420
|
-
<td
|
610
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> wheelchair accessibility</td>
|
421
611
|
</tr>
|
422
612
|
<tr>
|
423
|
-
<td
|
613
|
+
<td class="feature"></td>
|
424
614
|
</tr>
|
425
615
|
<!-- bilingual services -->
|
426
616
|
<tr>
|
427
|
-
<td
|
617
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" > bilingual services</td>
|
428
618
|
</tr>
|
429
619
|
<tr>
|
430
|
-
<td
|
620
|
+
<td class="feature"></td>
|
431
621
|
</tr>
|
432
622
|
<!-- wine consultant -->
|
433
623
|
<tr>
|
434
|
-
<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>
|
624
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> product consultant</td>
|
438
625
|
</tr>
|
439
626
|
<tr>
|
440
|
-
<td
|
441
|
-
src="/images/storesearch/returntoprevious.gif"
|
442
|
-
width="144" height="20" border="0"
|
443
|
-
alt="Return to Previous Page"></a></td>
|
627
|
+
<td class="feature"></td>
|
444
628
|
</tr>
|
629
|
+
|
445
630
|
</table>
|
446
631
|
</td>
|
447
|
-
|
632
|
+
</tr>
|
633
|
+
</table>
|
634
|
+
</td>
|
635
|
+
|
636
|
+
<td class="information_right" valign="top">
|
448
637
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
449
638
|
<tr>
|
450
|
-
<td
|
639
|
+
<td class="feature"></td>
|
451
640
|
</tr>
|
452
641
|
<!-- tasting bar -->
|
453
642
|
<tr>
|
454
|
-
<td
|
643
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> a tasting bar</td>
|
455
644
|
</tr>
|
456
645
|
<tr>
|
457
|
-
<td
|
646
|
+
<td class="feature"></td>
|
458
647
|
</tr>
|
459
648
|
<tr>
|
460
|
-
<td
|
649
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" > a beer cold room</td>
|
461
650
|
</tr>
|
462
651
|
<tr>
|
463
|
-
<td
|
652
|
+
<td class="feature"></td>
|
464
653
|
</tr>
|
465
654
|
<tr>
|
466
|
-
<td
|
655
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> special occasion permits</td>
|
467
656
|
</tr>
|
468
657
|
<tr>
|
469
|
-
<td
|
658
|
+
<td class="feature"></td>
|
470
659
|
</tr>
|
471
660
|
<tr>
|
472
|
-
<td
|
661
|
+
<td class="feature"></td>
|
473
662
|
</tr>
|
474
663
|
<tr>
|
475
|
-
<td
|
664
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> a VINTAGES corner</td>
|
476
665
|
</tr>
|
477
666
|
<tr>
|
478
|
-
<td
|
479
|
-
</tr>
|
480
|
-
|
667
|
+
<td class="feature"></td>
|
668
|
+
</tr>
|
481
669
|
</table>
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
670
|
+
</td>
|
671
|
+
</tr>
|
672
|
+
|
673
|
+
|
674
|
+
|
675
|
+
|
676
|
+
|
677
|
+
|
678
|
+
<tr>
|
679
|
+
<td colspan="2">
|
680
|
+
<input type="hidden" value="-79.2902" id="longitude" />
|
681
|
+
<input type="hidden" value="43.7838" id="latitude" />
|
682
|
+
<span style="text-align: center"><hr/>
|
683
|
+
<table style="width: 100%;">
|
684
|
+
<tr>
|
685
|
+
<td colspan="2">
|
686
|
+
<div id="map_canvas" class="mapWidth" style="height: 350px; margin: auto auto 0 auto;"></div>
|
687
|
+
</td>
|
688
|
+
</tr>
|
689
|
+
<tr>
|
690
|
+
<td colspan="2" width="100%" align="left">
|
691
|
+
<div class="mapWidth" style="margin: 0 auto 0 auto;">
|
692
|
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
693
|
+
<tr>
|
694
|
+
<td style="text-align: left;">
|
695
|
+
|
696
|
+
<!-- AddThis Button BEGIN -->
|
697
|
+
<div class="addthis_toolbox addthis_default_style " >
|
698
|
+
<a class="addthis_button_preferred_1"></a>
|
699
|
+
<a class="addthis_button_preferred_2"></a>
|
700
|
+
<a class="addthis_button_preferred_3"></a>
|
701
|
+
<a class="addthis_button_preferred_4"></a>
|
702
|
+
<a class="addthis_button_compact"></a>
|
703
|
+
<a class="addthis_counter addthis_bubble_style"></a>
|
704
|
+
</div>
|
705
|
+
<script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script>
|
706
|
+
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=mikelcbo"></script>
|
707
|
+
<!-- AddThis Button END -->
|
708
|
+
|
709
|
+
</td>
|
710
|
+
<td style="text-align: right;">
|
711
|
+
<a href="javascript: void(0);"><img id="directionsImg" alt="Directions" src="/images/storesearch/directions.png" border="0"/></a>
|
712
|
+
<input type="hidden" id="directionsLink" value="http://maps.google.com/maps?daddr=43.7838,-79.2902" />
|
713
|
+
</td>
|
714
|
+
</tr>
|
715
|
+
</table>
|
716
|
+
</div>
|
717
|
+
</td>
|
718
|
+
</tr>
|
719
|
+
</table>
|
720
|
+
</span>
|
721
|
+
</td>
|
722
|
+
</tr>
|
723
|
+
|
724
|
+
</table>
|
725
|
+
<!--content ends here-->
|
726
|
+
|
727
|
+
|
728
|
+
</td>
|
486
729
|
</tr>
|
487
730
|
</table>
|
488
731
|
</td>
|
@@ -564,7 +807,7 @@ win = window.open(mypage,myname,settings)}
|
|
564
807
|
|
565
808
|
<!--copyright notice begins//-->
|
566
809
|
|
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">© 2000/
|
810
|
+
<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">© 2000/2012 LCBO</span><span class="textlinks"> | <a id="privacy" href="/privacy/index.shtml">Privacy Policy</a> | <a id="terms" href="/terms/index.shtml">Terms & Conditions</a> | <a id="language" href="/french.html">
|
568
811
|
Français</a> <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"> </td><td width="764"> </td></tr></table></div>
|
569
812
|
|
570
813
|
<!--copyright notice ends//-->
|