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
@@ -21,9 +21,175 @@
|
|
21
21
|
|
22
22
|
<html>
|
23
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());
|
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")== "610") {
|
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=610&language=en";
|
171
|
+
} else {
|
172
|
+
var localwin=window.open("storeInfoPrinterFriendly.jsp?STORE=610&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
|
+
|
24
180
|
|
181
|
+
</style>
|
25
182
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
26
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
|
+
|
27
193
|
<title>LCBO Store Information</title>
|
28
194
|
|
29
195
|
<script language="Javascript">
|
@@ -34,7 +200,8 @@ function PrintItemDetails() {
|
|
34
200
|
|
35
201
|
</script>
|
36
202
|
|
37
|
-
<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" />
|
38
205
|
<base target="_top" />
|
39
206
|
</head>
|
40
207
|
|
@@ -49,40 +216,32 @@ function PrintItemDetails() {
|
|
49
216
|
<tr>
|
50
217
|
<td>
|
51
218
|
|
52
|
-
<!--Beginning of Primary SSI file
|
219
|
+
<!--Beginning of Primary SSI file 2012//-->
|
53
220
|
|
54
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>
|
55
222
|
|
56
|
-
|
57
|
-
|
58
223
|
<style>
|
59
|
-
|
60
|
-
{
|
61
|
-
|
62
|
-
}
|
63
|
-
.AutoCompleteHighlight
|
64
|
-
{
|
65
|
-
background-color:#D6DE9D;
|
66
|
-
}
|
224
|
+
html {overflow-y: scroll;}
|
225
|
+
.AutoCompleteBackground {background-color:white;}
|
226
|
+
.AutoCompleteHighlight {background-color:#D6DE9D;}
|
67
227
|
#theDiv {width:215px;background-color:white;white-space:nowrap; overflow:hidden;z-index:1000 !important;}
|
68
228
|
#theDiv2 {width:215px;background-color:white;white-space:nowrap; overflow:hidden;z-index:1000 !important;}
|
69
229
|
</style>
|
70
230
|
|
71
231
|
<script type="text/javascript" src="/ssi/primary.js"></script>
|
72
|
-
<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>
|
73
|
-
<img src="/images/spacer.gif" width="677" height="16" border="0"></td></tr><tr><td>
|
74
|
-
<table border="0" cellpadding="0" cellspacing="0" width="677"><tr>
|
75
|
-
<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>
|
76
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>
|
77
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>
|
78
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
|
+
|
79
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>
|
80
|
-
|
238
|
+
|
239
|
+
<td><img src="/images/spacer.gif" width="20" height="22" border="0"></td>
|
81
240
|
|
82
241
|
<td>
|
83
242
|
<form name="quickSearchForm" id="quickSearchForm" method="get" action="/lcbo-ear/lcbo/product/searchResults.do" onsubmit="quickSearchForm_checkNameOrNumber()" style="padding: 0; margin: 0;">
|
84
243
|
<div style="position:relative;overflow:visible;cursor:pointer;">
|
85
|
-
<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=''">
|
86
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;">
|
87
246
|
</div>
|
88
247
|
</div>
|
@@ -93,7 +252,7 @@ function PrintItemDetails() {
|
|
93
252
|
|
94
253
|
<td><img src="/images/spacer.gif" width="3" height="22" border="0"></td>
|
95
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>
|
96
|
-
<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>
|
97
256
|
|
98
257
|
<tr><td><img src="/images/spacer.gif" width="677" height="16" border="0"></td></tr></table></td></tr></table>
|
99
258
|
|
@@ -112,7 +271,6 @@ quickSearchForm_setItemnameResults("1");
|
|
112
271
|
<![endif]-->
|
113
272
|
|
114
273
|
<!--End of Primary SSI file//-->
|
115
|
-
|
116
274
|
|
117
275
|
</td>
|
118
276
|
</tr>
|
@@ -133,11 +291,7 @@ quickSearchForm_setItemnameResults("1");
|
|
133
291
|
</td>
|
134
292
|
<td> </td>
|
135
293
|
</tr>
|
136
|
-
|
137
|
-
<td colspan="3"><img name="nav_rde_r1_c2"
|
138
|
-
src="/images/products/nav_rde_r1_c2.gif" width="25" height="4"
|
139
|
-
border="0"></td>
|
140
|
-
</tr>
|
294
|
+
|
141
295
|
<tr>
|
142
296
|
<td><img name="nav_rde_r1_c2"
|
143
297
|
src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
|
@@ -149,11 +303,7 @@ quickSearchForm_setItemnameResults("1");
|
|
149
303
|
src="/images/storesearch/nav_rde_r1_c2.gif" width="25" height="1"
|
150
304
|
border="0"></td>
|
151
305
|
</tr>
|
152
|
-
|
153
|
-
<td colspan="3"><img name="nav_rde_r1_c2"
|
154
|
-
src="/images/products/images/nav_rde_r1_c2.gif" width="25"
|
155
|
-
height="6" border="0"></td>
|
156
|
-
</tr>
|
306
|
+
|
157
307
|
<tr>
|
158
308
|
<td> </td>
|
159
309
|
<td>
|
@@ -163,7 +313,7 @@ quickSearchForm_setItemnameResults("1");
|
|
163
313
|
<table width="11%" border="0" cellspacing="0" cellpadding="0">
|
164
314
|
<tr>
|
165
315
|
<td><img name="food_drink_r1_c1"
|
166
|
-
src="/images/storesearch/lcbo_store.gif" width="236"
|
316
|
+
src="http://www.lcbo.com/images/storesearch/lcbo_store.gif" width="236"
|
167
317
|
height="189" border="0" alt="LCBO Store"></td>
|
168
318
|
</tr>
|
169
319
|
<tr>
|
@@ -172,6 +322,14 @@ quickSearchForm_setItemnameResults("1");
|
|
172
322
|
height="84" border="0" alt="Store Info"></td>
|
173
323
|
</tr>
|
174
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
|
+
|
175
333
|
</td>
|
176
334
|
<td width="5"> </td>
|
177
335
|
<td width="479">
|
@@ -182,308 +340,392 @@ quickSearchForm_setItemnameResults("1");
|
|
182
340
|
<table width="100%" border="0" cellspacing="0"
|
183
341
|
cellpadding="10">
|
184
342
|
<tr>
|
185
|
-
<td
|
186
|
-
|
187
|
-
cellpadding="0">
|
343
|
+
<td style="text-align:center;">
|
344
|
+
<!--content starts here-->
|
345
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
188
346
|
<!--printer friendly starts here-->
|
189
347
|
<tr>
|
190
|
-
<td
|
191
|
-
<td class="main_font" width="50%" valign="top">
|
192
|
-
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
193
|
-
<tr>
|
194
|
-
<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>
|
195
|
-
</tr>
|
196
|
-
</table>
|
197
|
-
</td>
|
348
|
+
<td class="information_left" colspan="2"><span class="storeInfo_header">Store Information</span></td>
|
198
349
|
</tr>
|
199
|
-
<!--printer friendly ends here-->
|
350
|
+
<!--printer friendly ends here-->
|
351
|
+
|
200
352
|
<tr>
|
201
|
-
<td
|
202
|
-
<table width="100%" border="0" cellspacing="0"
|
203
|
-
cellpadding="0">
|
353
|
+
<td class="information_left" valign="top">
|
354
|
+
<table id="storeDetails" width="100%" border="0" cellspacing="0" cellpadding="0">
|
204
355
|
|
205
356
|
|
206
357
|
|
207
358
|
|
208
359
|
|
209
|
-
<tr>
|
210
|
-
<td
|
211
|
-
color="#859234" class="main_font"><b>LCBO Store # 610
|
360
|
+
<tr style="height: 30px;">
|
361
|
+
<td><span class="main_font"><font
|
362
|
+
color="#859234" class="main_font"><b>LCBO Store # 610 :</b></font></span>
|
363
|
+
</td>
|
212
364
|
</tr>
|
213
365
|
|
214
366
|
|
215
367
|
<tr>
|
216
|
-
<td
|
217
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
218
|
-
height="4" border="0"></td>
|
368
|
+
<td></td>
|
219
369
|
</tr>
|
220
370
|
<tr>
|
221
|
-
<td
|
371
|
+
<td class="main_font"><i>INDUSTRIAL ROAD & CLINTON STREET</i></td>
|
222
372
|
</tr>
|
223
373
|
<tr>
|
224
|
-
<td class="main_font"
|
225
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
226
|
-
height="4" border="0"></td>
|
374
|
+
<td class="main_font"></td>
|
227
375
|
</tr>
|
228
376
|
<tr>
|
229
|
-
<td
|
230
|
-
|
231
|
-
|
377
|
+
<td class="main_font">1 INDUSTRIAL ROAD, UNIT B
|
378
|
+
</td>
|
379
|
+
</tr>
|
380
|
+
|
381
|
+
<tr>
|
382
|
+
<td class="main_font">
|
383
|
+
P.O. BOX 239
|
384
|
+
</td>
|
232
385
|
</tr>
|
386
|
+
|
387
|
+
|
233
388
|
<tr>
|
234
|
-
<td class="main_font"
|
235
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
236
|
-
height="4" border="0"></td>
|
389
|
+
<td class="main_font"></td>
|
237
390
|
</tr>
|
238
391
|
<tr>
|
239
|
-
<td
|
392
|
+
<td class="main_font">TEESWATER,
|
240
393
|
|
241
394
|
|
242
395
|
|
243
|
-
N0G 2S0</td>
|
396
|
+
<nobr>N0G 2S0</nobr></td>
|
244
397
|
</tr>
|
245
398
|
<tr>
|
246
|
-
<td class="main_font"
|
247
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
248
|
-
height="4" border="0"></td>
|
399
|
+
<td class="main_font"></td>
|
249
400
|
</tr>
|
250
401
|
<tr>
|
251
|
-
<td
|
252
|
-
392-6837</td>
|
402
|
+
<td class="main_font"><span style="white-space: nowrap;">Telephone: 519-392-6837</span></td>
|
253
403
|
</tr>
|
254
404
|
<tr>
|
255
|
-
<td class="main_font"
|
256
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
257
|
-
height="4" border="0"></td>
|
405
|
+
<td class="main_font"></td>
|
258
406
|
</tr>
|
259
407
|
<tr>
|
260
408
|
|
261
409
|
|
262
|
-
<td
|
263
|
-
392-8481</td>
|
410
|
+
<td class="main_font"><span style="white-space: nowrap;">Fax: 519-392-8481</span></td>
|
264
411
|
|
265
412
|
|
266
413
|
</tr>
|
267
414
|
<tr>
|
268
|
-
<td
|
269
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
270
|
-
height="12" border="0"></td>
|
271
|
-
</tr>
|
272
|
-
<tr>
|
273
|
-
<td width="48%">
|
274
|
-
<p><a
|
275
|
-
href="http://maps.google.ca/maps?q=44.0017,-81.2876&hl=EN"
|
276
|
-
name="Show Map" target="lcbo_showmap"><img
|
277
|
-
src="/images/storesearch/showmap.gif" width=144
|
278
|
-
height=20 border=0 alt=""></a></p>
|
279
|
-
</td>
|
415
|
+
<td></td>
|
280
416
|
</tr>
|
281
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 # 610 :</font><br>
|
423
|
+
</td>
|
424
|
+
</tr>
|
425
|
+
|
426
|
+
|
427
|
+
<tr>
|
428
|
+
<td class="infoWindowTitle" style="text-align: left;">INDUSTRIAL ROAD & CLINTON STREET</td>
|
429
|
+
</tr>
|
430
|
+
<tr>
|
431
|
+
<td class="infoWindowBody" style="text-align: left;">1 INDUSTRIAL ROAD, UNIT B,
|
432
|
+
|
433
|
+
P.O. BOX 239, </td>
|
434
|
+
</tr>
|
435
|
+
<tr>
|
436
|
+
<td class="infoWindowBody" style="text-align: left;">TEESWATER,
|
437
|
+
|
438
|
+
|
439
|
+
|
440
|
+
<nobr>N0G 2S0</nobr></td>
|
441
|
+
</tr>
|
442
|
+
<tr>
|
443
|
+
<td class="infoWindowBody" style="text-align: left;">Telephone: 519-392-6837</td>
|
444
|
+
</tr>
|
445
|
+
</table>
|
446
|
+
<!-- Table for info window -->
|
447
|
+
|
448
|
+
|
449
|
+
|
282
450
|
</td>
|
283
|
-
<td
|
284
|
-
<table border="0" cellspacing="
|
285
|
-
<tr>
|
286
|
-
<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
|
287
455
|
class="main_font"><b><font color="#859234"
|
288
456
|
class="main_font">HOURS OF OPERATION</font></b></span></font></td>
|
289
457
|
</tr>
|
290
458
|
<tr>
|
291
|
-
<td colspan="
|
292
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
293
|
-
height="4" border="0"></td>
|
459
|
+
<td colspan="4"></td>
|
294
460
|
</tr>
|
295
|
-
<tr>
|
296
|
-
<td class="
|
461
|
+
<tr id="row0">
|
462
|
+
<td id="row0Day" class="hours" align="left">Sunday:</td>
|
297
463
|
|
298
|
-
<td class="
|
464
|
+
<td id="row0Time" class="hours" align="left">
|
299
465
|
Closed
|
300
466
|
|
301
467
|
</td>
|
468
|
+
<td style="width: 5px"></td>
|
469
|
+
<td style="width: 55px;" id="row0Flag" ></td>
|
302
470
|
</tr>
|
303
471
|
<tr>
|
304
|
-
<td colspan="
|
305
|
-
name="nav_rde_r1_c2"
|
306
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
307
|
-
height="4" border="0"></td>
|
472
|
+
<td colspan="4" class="hours"></td>
|
308
473
|
</tr>
|
309
|
-
<tr>
|
310
|
-
<td class="
|
474
|
+
<tr id="row1">
|
475
|
+
<td id="row1DAy" class="hours" align="left">Monday:</td>
|
311
476
|
|
312
|
-
<td class="
|
477
|
+
<td id="row1Time" class="hours" align="left">
|
313
478
|
Closed
|
314
479
|
|
315
480
|
</td>
|
481
|
+
<td style="width: 5px"></td>
|
482
|
+
<td id="row1Flag" ></td>
|
316
483
|
</tr>
|
317
484
|
<tr>
|
318
|
-
<td colspan="
|
319
|
-
name="nav_rde_r1_c2"
|
320
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
321
|
-
height="4" border="0"></td>
|
485
|
+
<td colspan="4" class="hours"></td>
|
322
486
|
</tr>
|
323
|
-
<tr>
|
324
|
-
<td class="
|
487
|
+
<tr id="row2">
|
488
|
+
<td id="row2Day" class="hours" align="left">Tuesday:</td>
|
325
489
|
|
326
|
-
<td class="
|
327
|
-
|
490
|
+
<td id="row2Time" class="hours" align="left">
|
491
|
+
10:00 AM - 6:00 PM
|
328
492
|
|
329
493
|
</td>
|
494
|
+
<td style="width: 5px"></td>
|
495
|
+
<td id="row2Flag" ></td>
|
330
496
|
</tr>
|
331
497
|
<tr>
|
332
|
-
<td colspan="
|
333
|
-
name="nav_rde_r1_c2"
|
334
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
335
|
-
height="4" border="0"></td>
|
498
|
+
<td colspan="4" class="hours"></td>
|
336
499
|
</tr>
|
337
|
-
<tr>
|
338
|
-
<td class="
|
500
|
+
<tr id="row3">
|
501
|
+
<td id="row3Day" class="hours" align="left">Wednesday:</td>
|
339
502
|
|
340
|
-
<td class="
|
341
|
-
|
503
|
+
<td id="row3Time" class="hours" align="left">
|
504
|
+
10:00 AM - 6:00 PM
|
342
505
|
|
343
506
|
</td>
|
507
|
+
<td style="width: 5px"></td>
|
508
|
+
<td id="row3Flag" ></td>
|
344
509
|
</tr>
|
345
510
|
<tr>
|
346
|
-
<td colspan="
|
347
|
-
name="nav_rde_r1_c2"
|
348
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
349
|
-
height="4" border="0"></td>
|
511
|
+
<td colspan="4" class="hours"></td>
|
350
512
|
</tr>
|
351
|
-
<tr>
|
352
|
-
<td class="
|
513
|
+
<tr id="row4">
|
514
|
+
<td id="row4Day" class="hours" align="left">Thursday:</td>
|
353
515
|
|
354
|
-
<td class="
|
355
|
-
|
516
|
+
<td id="row4Time" class="hours" align="left">
|
517
|
+
10:00 AM - 6:00 PM
|
356
518
|
|
357
519
|
</td>
|
520
|
+
<td style="width: 5px"></td>
|
521
|
+
<td id="row4Flag" ></td>
|
358
522
|
</tr>
|
359
523
|
<tr>
|
360
|
-
<td colspan="
|
361
|
-
name="nav_rde_r1_c2"
|
362
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
363
|
-
height="4" border="0"></td>
|
524
|
+
<td colspan="4" class="hours"></td>
|
364
525
|
</tr>
|
365
|
-
<tr>
|
366
|
-
<td class="
|
526
|
+
<tr id="row5">
|
527
|
+
<td id="row5Day" class="hours" align="left">Friday:</td>
|
367
528
|
|
368
|
-
<td class="
|
369
|
-
|
529
|
+
<td id="row5Time" class="hours" align="left">
|
530
|
+
10:00 AM - 6:00 PM
|
370
531
|
|
371
532
|
</td>
|
533
|
+
<td style="width: 5px"></td>
|
534
|
+
<td id="row5Flag" ></td>
|
372
535
|
</tr>
|
373
536
|
<tr>
|
374
|
-
<td colspan="
|
375
|
-
name="nav_rde_r1_c2"
|
376
|
-
src="/images/storesearch/nav_rde_r1_c2.gif" width="25"
|
377
|
-
height="4" border="0"></td>
|
537
|
+
<td colspan="4" class="hours"></td>
|
378
538
|
</tr>
|
379
|
-
<tr>
|
380
|
-
<td class="
|
539
|
+
<tr id="row6">
|
540
|
+
<td id="row6Day" class="hours" align="left">Saturday:</td>
|
381
541
|
|
382
|
-
<td class="
|
383
|
-
|
542
|
+
<td id="row6Time" class="hours" align="left">
|
543
|
+
10:00 AM - 6:00 PM
|
384
544
|
|
385
545
|
</td>
|
546
|
+
<td style="width: 5px"></td>
|
547
|
+
<td id="row6Flag" ></td>
|
386
548
|
</tr>
|
387
549
|
</table>
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
550
|
+
</td>
|
551
|
+
</tr>
|
552
|
+
|
553
|
+
<tr>
|
554
|
+
<td colspan="2">
|
555
|
+
|
556
|
+
<input type="hidden" id="1Open" value="00:00" />
|
557
|
+
<input type="hidden" id="1Close" value="00:00" />
|
558
|
+
<input type="hidden" id="2Open" value="10:00" />
|
559
|
+
<input type="hidden" id="2Close" value="18:00" />
|
560
|
+
<input type="hidden" id="3Open" value="10:00" />
|
561
|
+
<input type="hidden" id="3Close" value="18:00" />
|
562
|
+
<input type="hidden" id="4Open" value="10:00" />
|
563
|
+
<input type="hidden" id="4Close" value="18:00" />
|
564
|
+
<input type="hidden" id="5Open" value="10:00" />
|
565
|
+
<input type="hidden" id="5Close" value="18:00" />
|
566
|
+
<input type="hidden" id="6Open" value="10:00" />
|
567
|
+
<input type="hidden" id="6Close" value="18:00" />
|
568
|
+
<input type="hidden" id="0Open" value="00:00" />
|
569
|
+
<input type="hidden" id="0Close" value="00: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 -->
|
392
585
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
393
|
-
|
394
|
-
<td colspan="2" valign="top"><font color="#546415"><span
|
395
|
-
class="main_font"><b><font color="#859234"
|
396
|
-
class="main_font">This store has the following features:</font></b></span></font></td>
|
397
|
-
</tr>
|
586
|
+
|
398
587
|
|
399
588
|
<tr>
|
400
|
-
<td
|
589
|
+
<td valign="top">
|
401
590
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
402
591
|
<tr>
|
403
|
-
<td
|
592
|
+
<td class="feature"></td>
|
404
593
|
</tr>
|
405
594
|
<!-- parking -->
|
406
595
|
<tr>
|
407
|
-
<td
|
596
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> parking</td>
|
408
597
|
</tr>
|
409
598
|
<tr>
|
410
|
-
<td
|
599
|
+
<td class="feature"></td>
|
411
600
|
</tr>
|
412
601
|
<!-- transit access -->
|
413
602
|
<tr>
|
414
|
-
<td
|
603
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" > transit access</td>
|
415
604
|
</tr>
|
416
605
|
<tr>
|
417
|
-
<td
|
606
|
+
<td class="feature"></td>
|
418
607
|
</tr>
|
419
608
|
<!-- wheelchair accessibility -->
|
420
609
|
<tr>
|
421
|
-
<td
|
610
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> wheelchair accessibility</td>
|
422
611
|
</tr>
|
423
612
|
<tr>
|
424
|
-
<td
|
613
|
+
<td class="feature"></td>
|
425
614
|
</tr>
|
426
615
|
<!-- bilingual services -->
|
427
616
|
<tr>
|
428
|
-
<td
|
617
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" > bilingual services</td>
|
429
618
|
</tr>
|
430
619
|
<tr>
|
431
|
-
<td
|
620
|
+
<td class="feature"></td>
|
432
621
|
</tr>
|
433
622
|
<!-- wine consultant -->
|
434
623
|
<tr>
|
435
|
-
<td
|
436
|
-
</tr>
|
437
|
-
<tr>
|
438
|
-
<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" > product consultant</td>
|
439
625
|
</tr>
|
440
626
|
<tr>
|
441
|
-
<td
|
442
|
-
src="/images/storesearch/returntoprevious.gif"
|
443
|
-
width="144" height="20" border="0"
|
444
|
-
alt="Return to Previous Page"></a></td>
|
627
|
+
<td class="feature"></td>
|
445
628
|
</tr>
|
629
|
+
|
446
630
|
</table>
|
447
631
|
</td>
|
448
|
-
|
632
|
+
</tr>
|
633
|
+
</table>
|
634
|
+
</td>
|
635
|
+
|
636
|
+
<td class="information_right" valign="top">
|
449
637
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
450
638
|
<tr>
|
451
|
-
<td
|
639
|
+
<td class="feature"></td>
|
452
640
|
</tr>
|
453
641
|
<!-- tasting bar -->
|
454
642
|
<tr>
|
455
|
-
<td
|
643
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" > a tasting bar</td>
|
456
644
|
</tr>
|
457
645
|
<tr>
|
458
|
-
<td
|
646
|
+
<td class="feature"></td>
|
459
647
|
</tr>
|
460
648
|
<tr>
|
461
|
-
<td
|
649
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" checked> a beer cold room</td>
|
462
650
|
</tr>
|
463
651
|
<tr>
|
464
|
-
<td
|
652
|
+
<td class="feature"></td>
|
465
653
|
</tr>
|
466
654
|
<tr>
|
467
|
-
<td
|
655
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" > special occasion permits</td>
|
468
656
|
</tr>
|
469
657
|
<tr>
|
470
|
-
<td
|
658
|
+
<td class="feature"></td>
|
471
659
|
</tr>
|
472
660
|
<tr>
|
473
|
-
<td
|
661
|
+
<td class="feature"></td>
|
474
662
|
</tr>
|
475
663
|
<tr>
|
476
|
-
<td
|
664
|
+
<td class="feature"><input type="checkbox" name="checkbox" disabled value="checkbox" > a VINTAGES corner</td>
|
477
665
|
</tr>
|
478
666
|
<tr>
|
479
|
-
<td
|
480
|
-
</tr>
|
481
|
-
|
667
|
+
<td class="feature"></td>
|
668
|
+
</tr>
|
482
669
|
</table>
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
670
|
+
</td>
|
671
|
+
</tr>
|
672
|
+
|
673
|
+
|
674
|
+
|
675
|
+
|
676
|
+
|
677
|
+
|
678
|
+
<tr>
|
679
|
+
<td colspan="2">
|
680
|
+
<input type="hidden" value="-81.2876" id="longitude" />
|
681
|
+
<input type="hidden" value="44.0017" 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=44.0017,-81.2876" />
|
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>
|
487
729
|
</tr>
|
488
730
|
</table>
|
489
731
|
</td>
|
@@ -565,7 +807,7 @@ win = window.open(mypage,myname,settings)}
|
|
565
807
|
|
566
808
|
<!--copyright notice begins//-->
|
567
809
|
|
568
|
-
<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">
|
569
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>
|
570
812
|
|
571
813
|
<!--copyright notice ends//-->
|
@@ -605,4 +847,4 @@ if (set_inputForm_setItemnameResults) {
|
|
605
847
|
|
606
848
|
|
607
849
|
</body>
|
608
|
-
</html>
|
850
|
+
</html>
|