picturehouse_uk 1.0.1 → 1.0.2

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.
@@ -0,0 +1,1019 @@
1
+
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml"
6
+ xmlns:og="http://opengraphprotocol.org/schema/"
7
+ xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="en" lang="en">
8
+ <head>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
10
+ <title>Contact Us | Hires &amp; Info | Duke&#39;s At Komedia | Brighton</title>
11
+
12
+ <meta name="keywords" content="picturehouse, cinema, picture house, Duke&#39;s At Komedia" />
13
+
14
+
15
+ <meta name="description" content="Contact Us | Hires &amp; Info at Duke&#39;s At Komedia | Brighton" />
16
+
17
+ <script type="text/javascript">
18
+ var venue = 'Dukes_At_Komedia';
19
+ var trailer = {height:288,width:510};
20
+ </script>
21
+
22
+
23
+
24
+ <link rel="stylesheet" href="/site-media/css/cityscreen/global.201308021435.css" />
25
+
26
+
27
+ <!--[if IE 6]>
28
+ <link rel="stylesheet" href="/site-media/css/cityscreen/ie6.v3.min.css" type="text/css" />
29
+ <![endif]-->
30
+
31
+ <!--[if IE 7]>
32
+ <link rel="stylesheet" href="/site-media/css/cityscreen/ie7.v1.min.css" type="text/css" />
33
+ <![endif]-->
34
+ <meta name="google-site-verification" content="tfGR4gRo-YG-57LfPFX3Pjv0VqsFRPKIs2ioVOH-3f8" />
35
+
36
+ <meta property="fb:app_id" content="" />
37
+ <meta property="og:type" content="" />
38
+ <meta property="og:title" content="Contact Us | Hires &amp; Info at Duke&#39;s At Komedia | Brighton" />
39
+ <meta property="og:url" content="" />
40
+ <meta property="og:site_name" content="Picturehouses" />
41
+ <meta property="og:description" content="" />
42
+ <meta property="og:image" content="" />
43
+
44
+
45
+ <link id="canonical" rel="canonical" href="/cinema/Dukes_At_Komedia/Hires_Info/Contact_Us/" />
46
+
47
+
48
+
49
+
50
+ <script type="text/javascript" charset="utf-8" src="/site-media/js/libs/jquery-1.9.1.js"></script>
51
+ <script src="/site-media/js/libs/jquery-migrate-1.1.0.js"></script>
52
+ <script type="text/javascript" charset="utf-8" src="/site-media/js/libs/typeahead.js"></script>
53
+ <script src="/site-media/js/libs/hogan-2.0.0.js"></script>
54
+ <script src="/site-media/js/libs/jquery.tools.min.js"></script>
55
+
56
+ <link rel="stylesheet" type="text/css" href="http://partner.mymovies.net/html5/jqtools/1.css"/>
57
+ <link href="http://partner.mymovies.net/html5/css/video-js.css" rel="stylesheet" type="text/css">
58
+ <script src="http://partner.mymovies.net/html5/js/video_ovrly.js" type="text/javascript"></script>
59
+ <script SRC="http://flvplayer.mymovies.net/includes/sdc_tag.js" type="text/javascript"></script>
60
+
61
+ <script type="text/javascript" charset="utf-8" src="/site-media/js/cityscreen/site.201308042128.js"></script>
62
+
63
+ <link type="image/x-icon" href="/site-media/images/cityscreen/favicon.gif" rel="shortcut icon"/>
64
+ <link type="image/x-icon" href="/site-media/images/cityscreen/favicon.gif" rel="icon"/>
65
+
66
+ <script type="text/javascript">
67
+ function twitterPop(str) {
68
+ mywindow = window.open('http://twitter.com/share?url='+str,"Tweet_widow","channelmode=no,directories=no,location=no,menubar=no,scrollbars=no,toolbar=no,status=no,width=500,height=375,left=300,top=200");
69
+ mywindow.focus();
70
+ }
71
+ </script>
72
+ <script type="text/javascript">
73
+ docCookies = {
74
+ getItem: function (sKey) {
75
+ if (!sKey || !this.hasItem(sKey)) { return null; }
76
+ return unescape(document.cookie.replace(new RegExp("(?:^|.*;\\s*)" + escape(sKey).replace(/[\-\.\+\*]/g, "\\$&") + "\\s*\\=\\s*((?:[^;](?!;))*[^;]?).*"), "$1"));
77
+ },
78
+ /**
79
+ * docCookies.setItem(sKey, sValue, vEnd, sPath, sDomain, bSecure)
80
+ *
81
+ * @argument sKey (String): the name of the cookie;
82
+ * @argument sValue (String): the value of the cookie;
83
+ * @optional argument vEnd (Number, String, Date Object or null): the max-age in seconds (e.g., 31536e3 for a year) or the
84
+ * expires date in GMTString format or in Date Object format; if not specified it will expire at the end of session;
85
+ * @optional argument sPath (String or null): e.g., "/", "/mydir"; if not specified, defaults to the current path of the current document location;
86
+ * @optional argument sDomain (String or null): e.g., "example.com", ".example.com" (includes all subdomains) or "subdomain.example.com"; if not
87
+ * specified, defaults to the host portion of the current document location;
88
+ * @optional argument bSecure (Boolean or null): cookie will be transmitted only over secure protocol as https;
89
+ * @return undefined;
90
+ **/
91
+ setItem: function (sKey, sValue, vEnd, sPath, sDomain, bSecure) {
92
+ if (!sKey || /^(?:expires|max\-age|path|domain|secure)$/.test(sKey)) { return; }
93
+ var sExpires = "";
94
+ if (vEnd) {
95
+ switch (typeof vEnd) {
96
+ case "number": sExpires = "; max-age=" + vEnd; break;
97
+ case "string": sExpires = "; expires=" + vEnd; break;
98
+ case "object": if (vEnd.toGMTString != undefined) { sExpires = "; expires=" + vEnd.toGMTString(); } break;
99
+ }
100
+ }
101
+ document.cookie = escape(sKey) + "=" + escape(sValue) + sExpires + (sDomain ? "; domain=" + sDomain : "") + (sPath ? "; path=" + sPath : "") + (bSecure ? "; secure" : "");
102
+ },
103
+ removeItem: function (sKey) {
104
+ if (!sKey || !this.hasItem(sKey)) { return; }
105
+ var oExpDate = new Date();
106
+ oExpDate.setDate(oExpDate.getDate() - 1);
107
+ document.cookie = escape(sKey) + "=; expires=" + oExpDate.toGMTString() + "; path=/";
108
+ },
109
+ hasItem: function (sKey) { return (new RegExp("(?:^|;\\s*)" + escape(sKey).replace(/[\-\.\+\*]/g, "\\$&") + "\\s*\\=")).test(document.cookie); }
110
+ };
111
+ jQuery(document).ready(function(){
112
+ if ((docCookies.getItem('accepted') === null)) {
113
+ console.log('cookie');
114
+ jQuery('body').append('<div id="cookie_message" style="background-color: rgb(255, 255, 225); color: rgb(51, 51, 51); position: fixed; top: 0px; left: 0px; right: 0px; padding: 7px 120px 7px 36px; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(68, 68, 68); font-size: 12px; font-family: Arial, Helvetica, sans-serif; z-index: 9999; box-shadow: rgb(0, 0, 0) 0px 0px 5px; "><p class="wolfblock" style="text-align: left; font-size: 1.1em !important; width: 600px; float: left; margin: 0px; padding: 0px; line-height: 16px; ">This site uses cookies to help make it more useful and reliable. By using the site or by dismissing this banner you are consenting to their use.</p><a href="#" id="cookie_accepted">Do not show this message again</a></div></div>');
115
+ jQuery('#cookie_accepted').click(function() {
116
+ jQuery('#cookie_message').hide();
117
+ docCookies.setItem('accepted', 'dismissed', new Date(2014, 1, 1), '/');
118
+ });
119
+ }
120
+ });
121
+ </script>
122
+ <script type="text/javascript">
123
+ var apiHost = (("https:" == document.location.protocol) ? "https://" : "http://");
124
+ var websales_url = ''.replace('http://', apiHost);
125
+ var secure_websales_url = 'https://www.picturehouses.co.uk';
126
+ newman_prefix = 'newman';
127
+ setup_api();
128
+ </script>
129
+
130
+ <script type="text/javascript">
131
+ newman_prefix = 'newman';
132
+ document.write(unescape("%3Cscript src='" + websales_url + "/jswebsales/static/customer.201308042153.js' type='text/javascript'%3E%3C/script%3E"));
133
+ </script>
134
+
135
+ <script type="text/javascript">
136
+ jQuery(document).ready(function(){
137
+ jQuery('#searchForm').replaceWith('<div class="demo" style="float:right; margin-right:10px;"><form rel="nofollow" action="/cinema/Dukes_At_Komedia/Search/"><input class="typeahead" name="header_search" type="text" placeholder="Search..."></form></div>');
138
+
139
+ var url = '/fs/';
140
+ if ('DAK' !== 'global') {
141
+ url = '/cinema/Dukes_At_Komedia' + url;
142
+ }
143
+ jQuery('.typeahead').typeahead({
144
+ name:'films',
145
+ prefetch:{url:url,
146
+ ttl:0},
147
+ limit:30,
148
+ ttl_ms:0
149
+ })
150
+ .on('typeahead:opened', function(evt) {
151
+ var $typeahead = jQuery(this);
152
+ var v = $typeahead.val();
153
+ if (v !== '') {
154
+ _gaq.push(['_trackEvent', 'Search', 'Typing', v]);
155
+ }
156
+ })
157
+ .on('typeahead:selected', function(evt, item) {
158
+ var $typeahead = jQuery(this);
159
+ _gaq.push(['_trackEvent', 'Search', 'Selected', $typeahead.val()]);
160
+ window.location.href = item.uri + '?utm_source=' + window.location.pathname + '&utm_medium=search&utm_campaign=selected';
161
+ })
162
+ .on('typeahead:closed', function(evt, item) {
163
+ var $typeahead = jQuery(this);
164
+ console.log('closed');
165
+ })
166
+ .on('typeahead:autocompleted', function (evt, item) {
167
+ var $typeahead = jQuery(this);
168
+ _gaq.push(['_trackEvent', 'Search', 'Autocompleted', $typeahead.val()]);
169
+ window.location.href = item.uri + '?utm_source=' + window.location.pathname + '&utm_medium=search&utm_campaign=autocompleted';
170
+ }) ;
171
+ jQuery('div.demo form input.typeahead').bind('keypress', function(e) {
172
+ if(e.keyCode===13){
173
+ jQuery('div.demo form').submit();
174
+ }
175
+ });
176
+ initialize_api('Dukes_At_Komedia', '', 'DAK');
177
+ });
178
+ </script>
179
+ </head>
180
+
181
+ <body>
182
+
183
+ <div id="wrapper">
184
+
185
+
186
+ <div id="con_header" class="clapham headerDAK"
187
+
188
+
189
+
190
+
191
+
192
+
193
+ style="background: url('/site-media/images/cityscreen/headers/header_DAK.gif');">
194
+
195
+
196
+
197
+
198
+
199
+
200
+ <h1>
201
+
202
+ <a href="/cinema/Dukes_At_Komedia/" id="header_logo" class="DAK" alt="Duke&#39;s At Komedia"></a>
203
+
204
+ </h1>
205
+ <div id="header_right">
206
+ <a href="#" id="qb" rel="nofollow" class="quickbook_button"></a>
207
+ <form rel="nofollow" id ="searchForm" action="/cinema/Dukes_At_Komedia/Search/">
208
+ <input type="text" name="header_search" id="header_search" value=""/>
209
+ </form>
210
+ <div id="quickbook_layer">
211
+ <div class="quickbook_layer_spacing">
212
+ <form>
213
+ <select id="cinemaField"><option value="">Cinema</option></select>
214
+ <select id="filmField"><option value="">Film</option></select>
215
+ <select id="dateField"><option value="">Date</option></select>
216
+ <select id="showField"><option value="">Time</option></select>
217
+ <div class="right"><a href="#" id="go" class="button_book">Book</a></div>
218
+ </form>
219
+ </div>
220
+ </div>
221
+ </div>
222
+
223
+ <div class="top-links">
224
+ <div class="top-links-icons">
225
+ <a class="i-newsletter" href="/cinema/Dukes_At_Komedia/Connect/Email_News/">
226
+ <i class="t-icon"><i></i></i>
227
+ <span class="s-tooltip">
228
+ <span class="st-tl"></span><span class="st-tr"></span>
229
+ <strong>Newsletter</strong>
230
+ </span>
231
+ </a>
232
+
233
+ <span class="hide"> | </span>
234
+
235
+ <a class="i-facebook" href="/cinema/Dukes_At_Komedia/Connect/Facebook/">
236
+ <i class="t-icon"><i></i></i>
237
+ <span class="s-tooltip">
238
+ <span class="st-tl"></span><span class="st-tr"></span>
239
+ <strong>Facebook</strong>
240
+ </span>
241
+ </a>
242
+
243
+ <span class="hide"> | </span>
244
+
245
+ <a class="i-twitter" href="/cinema/Dukes_At_Komedia/Connect/Twitter/">
246
+ <i class="t-icon"><i></i></i>
247
+ <span class="s-tooltip">
248
+ <span class="st-tl"></span><span class="st-tr"></span>
249
+ <strong>Twitter</strong>
250
+ </span>
251
+ </a>
252
+ </div>
253
+
254
+
255
+ <span class="tl-label">MyPicturehouse:</span>
256
+ <a href="#login_form" id="login_formfancybox-link" class="fancybox-link"><strong>Sign in / Register</strong></a>
257
+
258
+
259
+
260
+ </div>
261
+
262
+
263
+
264
+
265
+
266
+ <div class="basket" style="top:50px;right:15px;position:absolute;"></div>
267
+ <div class="dummy-top-links" class="hide"></div>
268
+
269
+ </div>
270
+
271
+ <div class="hide">
272
+ <div id="login_form" class="popup-form g-clear">
273
+ <form method="post" action="/loyalty/login_process" name="login_form">
274
+ <div class="form-left-part">
275
+ <h3>Sign in</h3>
276
+ <p class="error login_form" style="color:red; margin:0; line-height:1em; display:None;"></p>
277
+
278
+ <label for="">Email address</label>
279
+ <span class="text">
280
+ <i class="t-tl"></i><i class="t-tr"></i>
281
+ <input type="text" id="loginemail" name="loginemail"/>
282
+ </span>
283
+
284
+ <div class="clearall"></div>
285
+
286
+ <label for="">Password</label>
287
+ <span class="text">
288
+ <i class="t-tl"></i><i class="t-tr"></i>
289
+ <input type="password" id="loginpassword" name="loginpassword"/>
290
+ </span>
291
+
292
+ <div class="clearall"></div>
293
+
294
+ <a class="lightgreen" href="#forgotpassword_form" id="forgotpasswordbutton" title="Forgot your password?"><strong>Forgot your password?</strong></a>
295
+
296
+ <input type="hidden" value="true" name="nomd5"/>
297
+ <div class="checkbox">
298
+ <input id="loginremember_me" type="checkbox" name="loginremember_me"/>
299
+ <label for="">Keep me signed in</label>
300
+ </div>
301
+
302
+ <div class="clearall"></div>
303
+
304
+ <span class="button">
305
+ <i class="b-tl"></i><i class="b-tr"></i>
306
+ <input type="submit" value="Sign in" id="loginbutton"/>
307
+ </span>
308
+ </div>
309
+ </form>
310
+
311
+ <div class="form-right-part">
312
+ <h3>Create an account</h3>
313
+ <p>You must be an existing Picturehouse Member to register for an online account.</p>
314
+ <p class="error register_form" style="color:red; margin:0; line-height:1em; display:None;"></p>
315
+
316
+ <label for="">Membership number (8 digits)</label>
317
+ <span class="text">
318
+ <i class="t-tl"></i><i class="t-tr"></i>
319
+ <input type="text" id="membership_myphcustomer_num"/>
320
+ </span>
321
+
322
+ <div class="clearall"></div>
323
+
324
+ <label for="">Email address</label>
325
+ <span class="text">
326
+ <i class="t-tl"></i><i class="t-tr"></i>
327
+ <input type="text" id="membership_myphcustomer_email" />
328
+ </span>
329
+
330
+ <div class="clearall"></div>
331
+
332
+ <a class="lightgreen" href="#" id="noemailbutton" title="">I don't have a registered email address.</a>
333
+
334
+ <div class="clearall"></div>
335
+ <br />
336
+
337
+ <span class="button">
338
+ <i class="b-tl"></i><i class="b-tr"></i>
339
+ <input type="submit" id="createaccountbutton" value="Create account" />
340
+ </span>
341
+
342
+ <div class="clearall"></div>
343
+ <br />
344
+
345
+ <h4>The benefits</h4>
346
+
347
+ Rate films, receive recommendations, view history. Speed up your online booking.
348
+ <br />Manage account and subscriptions.
349
+ <br />+ More coming soon.
350
+ </div>
351
+
352
+ </div>
353
+ </div>
354
+ <div class="hide">
355
+ <div id="forgotpassword_form" class="popup-form g-clear">
356
+ <div class="form-left-part">
357
+ <h3>Forgot your password</h3>
358
+ <p>Enter your email address so that we can email you the password</p>
359
+
360
+ <p class="error forgotpassword_form" style="color:red; margin:0; line-height:1em; display:None;"></p>
361
+
362
+ <label for="">Email address</label>
363
+
364
+ <span class="text">
365
+ <i class="t-tl"></i><i class="t-tr"></i>
366
+ <input type="text" id="forgot_passwordemail"/>
367
+ </span>
368
+
369
+ <div class="clearall"></div>
370
+
371
+ <span class="button">
372
+ <i class="b-tl"></i><i class="b-tr"></i>
373
+ <input type="submit" value="email new password" id="forgot_password_button"/>
374
+ </span>
375
+ </div>
376
+ </div>
377
+ </div>
378
+ <div class="hide">
379
+ <a href="#message_form" id="popup_message_link"></a>
380
+ <a href="#register_form" id="register_link"></a>
381
+ </div>
382
+ <div class="hide">
383
+ <div id="message_form" class="popup-form g-clear">
384
+ <h3 id="popup_message_box_title"></h3>
385
+
386
+ </div>
387
+ </div>
388
+ <div class="hide">
389
+ <div id="register_form" class="popup-form g-clear">
390
+ <form method="post" action="/loyalty/register_num" name="register_form" id="register">
391
+ <h3>Register</h3>
392
+ <p>Please provide the following details to set up your account.</p>
393
+
394
+ <p class="error" style="color:red; padding:0; margin:0; line-height:1em; display:None;"></p>
395
+ <label for="">Membership number</label>
396
+ <span class="text">
397
+ <i class="t-tl"></i><i class="t-tr"></i>
398
+ <input type="text" id="registercustomer_num" name="registercustomer_num"/>
399
+ </span>
400
+
401
+ <input type="hidden" value="true" name="nomd5"/>
402
+ <div class="clearall"></div>
403
+ <label for="">First name</label>
404
+ <span class="text">
405
+ <i class="t-tl"></i><i class="t-tr"></i>
406
+ <input type="text" id="registerfirstname" name="registerfirstname"/>
407
+ </span>
408
+
409
+ <div class="clearall"></div>
410
+ <label for="">Surname</label>
411
+ <span class="text">
412
+ <i class="t-tl"></i><i class="t-tr"></i>
413
+ <input type="text" id="registerlastname" name="registerlastname"/>
414
+ </span>
415
+ <input type="hidden" class="broad popup" name="registervenue_id" value="" id="registervenue_id">
416
+ <input type="hidden" class="broad popup" name="registercity" value="" id="registercity">
417
+
418
+ <div class="clearall"></div>
419
+
420
+ <label for="">Email address</label>
421
+ <span class="text">
422
+ <i class="t-tl"></i><i class="t-tr"></i>
423
+ <input type="text" id="registeremail" name="registeremail"/>
424
+ </span>
425
+
426
+ <div class="clearall"></div>
427
+ <label for="">Password</label>
428
+ <span class="text">
429
+ <i class="t-tl"></i><i class="t-tr"></i>
430
+ <input type="password" id="registerpassword" name="registerpassword"/>
431
+ </span>
432
+
433
+ <div class="clearall"></div>
434
+ <label for="">Confirm password</label>
435
+ <span class="text">
436
+ <i class="t-tl"></i><i class="t-tr"></i>
437
+ <input type="password" id="registerpassword2" name="registerpassword2"/>
438
+ </span>
439
+
440
+ <div class="clearall"></div>
441
+
442
+ <span class="button">
443
+ <i class="b-tl"></i><i class="b-tr"></i>
444
+ <input type="submit" value="Register" id="register_button"/>
445
+ </span>
446
+ </form>
447
+ </div>
448
+ </div>
449
+
450
+
451
+
452
+
453
+ <div id="con_menu">
454
+ <!-- Main menu -->
455
+ <div id="menumain" style="font-size:14px;">
456
+
457
+
458
+ <!-- Seperator -->
459
+
460
+
461
+
462
+ <a href="/" class="menu_ph">
463
+ </a>
464
+
465
+
466
+ <!-- Seperator -->
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+
476
+
477
+ <a href="/cinema/Dukes_At_Komedia/Whats_On/" class=
478
+
479
+ "menuitem DAK"
480
+
481
+ ><span class="menuitem_left"></span>What&#39;s On</a>
482
+
483
+
484
+ <!-- Seperator -->
485
+
486
+
487
+
488
+
489
+
490
+ <span class="separator">&nbsp;</span>
491
+
492
+
493
+
494
+
495
+
496
+
497
+
498
+ <a href="/cinema/Dukes_At_Komedia/Coming_Soon/" class=
499
+
500
+ "menuitem DAK"
501
+
502
+ ><span class="menuitem_left"></span>Coming Soon</a>
503
+
504
+
505
+ <!-- Seperator -->
506
+
507
+
508
+
509
+
510
+
511
+ <span class="separator">&nbsp;</span>
512
+
513
+
514
+
515
+
516
+
517
+
518
+
519
+ <a href="/cinema/Dukes_At_Komedia/Picturehouse_Membership/" class=
520
+
521
+ "menuitem DAK"
522
+
523
+ ><span class="menuitem_left"></span>Membership</a>
524
+
525
+
526
+ <!-- Seperator -->
527
+
528
+
529
+
530
+
531
+
532
+ <span class="separator">&nbsp;</span>
533
+
534
+
535
+
536
+
537
+
538
+
539
+
540
+ <a href="/cinema/Dukes_At_Komedia/News/" class=
541
+
542
+ "menuitem DAK"
543
+
544
+ ><span class="menuitem_left"></span>News</a>
545
+
546
+
547
+ <!-- Seperator -->
548
+
549
+
550
+
551
+
552
+
553
+ <span class="separator">&nbsp;</span>
554
+
555
+
556
+
557
+
558
+
559
+
560
+
561
+ <a href="/cinema/Dukes_At_Komedia/Connect/" class=
562
+
563
+ "menuitem DAK"
564
+
565
+ ><span class="menuitem_left"></span>Connect</a>
566
+
567
+
568
+ <!-- Seperator -->
569
+
570
+
571
+
572
+
573
+
574
+ <span class="separator">&nbsp;</span>
575
+
576
+
577
+
578
+
579
+
580
+
581
+
582
+ <a href="/cinema/Dukes_At_Komedia/Picturehouse_Recommends/" class=
583
+
584
+ "menuitem DAK"
585
+
586
+ ><span class="menuitem_left"></span>Recommends</a>
587
+
588
+
589
+ <!-- Seperator -->
590
+
591
+
592
+
593
+
594
+
595
+ <span class="separator">&nbsp;</span>
596
+
597
+
598
+
599
+
600
+
601
+
602
+
603
+ <a href="/cinema/Dukes_At_Komedia/Food_Drink/" class=
604
+
605
+ "menuitem DAK"
606
+
607
+ ><span class="menuitem_left"></span>Food &amp; Drink</a>
608
+
609
+
610
+ <!-- Seperator -->
611
+
612
+
613
+
614
+
615
+
616
+ <span class="separator">&nbsp;</span>
617
+
618
+
619
+
620
+
621
+
622
+
623
+
624
+ <a href="/cinema/Dukes_At_Komedia/Faqs/" class=
625
+
626
+ "menuitem DAK"
627
+
628
+ ><span class="menuitem_left"></span>FAQs</a>
629
+
630
+
631
+ <!-- Seperator -->
632
+
633
+
634
+
635
+
636
+
637
+ <span class="separator">&nbsp;</span>
638
+
639
+
640
+
641
+
642
+
643
+
644
+
645
+ <a href="/cinema/Duke_Of_Yorks/" class=
646
+
647
+ "menuitem DAK"
648
+
649
+ ><span class="menuitem_left"></span>Duke of Yorks</a>
650
+
651
+
652
+
653
+ </div>
654
+ <!-- Ends Main menu -->
655
+ <!-- Sub menu -->
656
+
657
+
658
+ </div>
659
+
660
+
661
+ <div id="con_content">
662
+
663
+ <div class="col_double">
664
+
665
+
666
+ <a href="/cinema/Dukes_At_Komedia/Hires_Info/Venue_Info/"
667
+
668
+ class="box_tab"
669
+
670
+ ><span class="tab_left"></span>Venue Info</a>
671
+
672
+ <a href="/cinema/Dukes_At_Komedia/Hires_Info/Contact_Us/"
673
+
674
+ class="box_tab active"
675
+
676
+ ><span class="tab_left"></span>Contact Us</a>
677
+
678
+ <a href="/cinema/Dukes_At_Komedia/Hires_Info/Venue_Hire/"
679
+
680
+ class="box_tab"
681
+
682
+ ><span class="tab_left"></span>Venue Hire</a>
683
+
684
+ <a href="/cinema/Dukes_At_Komedia/Hires_Info/Press/"
685
+
686
+ class="box_tab"
687
+
688
+ ><span class="tab_left"></span>Press</a>
689
+
690
+ <a href="/cinema/Dukes_At_Komedia/Hires_Info/Jobs/"
691
+
692
+ class="box_tab"
693
+
694
+ ><span class="tab_left"></span>Jobs</a>
695
+
696
+ <div style="clear:both;"></div>
697
+
698
+
699
+ <div class="box6">
700
+
701
+
702
+
703
+
704
+ <div class="box6_top"></div>
705
+
706
+
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+
716
+
717
+
718
+ <div class="box6_title">
719
+ <div class="right" style="margin-top: 5px;">
720
+ </div>
721
+ <h1>Contact Us</h1>
722
+ </div>
723
+
724
+ <div class="box6_content">
725
+ <div style="clear:both;"></div>
726
+ <div class="right">
727
+ <div style="margin:10px;">
728
+ <a href="https://addthis.com/bookmark.php?v=250&amp;pub=xa-4af2a5d24013d7f8&amp;username=gswartland" class="button_share addthis_button">&nbsp;</a>
729
+ <script type="text/javascript" src="https://s7.addthis.com/js/250/addthis_widget.js#pub=xa-4af2a5d24013d7f8"></script>
730
+ </div>
731
+
732
+ </div>
733
+ <div class="txt6" style="padding-top: 10px;">
734
+
735
+
736
+ <p style="font-style: normal; font-family: Arial, Tahoma, Verdana, sans-serif;">
737
+ <div class="box" style="width:280px;">
738
+ <div class="heading"><span class="newsheading">Duke&#39;s At Komedia</span></div>
739
+ <div class="box1">
740
+ <table cellspacing="0" cellpadding="0" border="0" id="cinemasbox">
741
+ <tbody>
742
+
743
+ <tr><td valign="bottom" class="cinemaListBox">44-47</td></tr>
744
+ <tr><td valign="bottom" class="cinemaListBox">Gardner Street</td></tr>
745
+ <tr><td valign="bottom" class="cinemaListBox">North Laine</td></tr>
746
+ <tr><td valign="bottom" class="cinemaListBox">Brighton</td></tr>
747
+ <tr><td valign="bottom" class="cinemaListBox"></td></tr>
748
+ <tr><td valign="bottom" class="cinemaListBox"></td></tr>
749
+ <tr><td valign="bottom" class="cinemaListBox">BN1 1UN</td></tr>
750
+
751
+
752
+
753
+ <tr><td valign="bottom" class="cinemaListBox">email: </td></tr>
754
+
755
+ </tbody>
756
+ </table>
757
+ </div>
758
+ </div>
759
+
760
+ </p>
761
+ <p style="font-style: normal; font-family: Arial, Tahoma, Verdana, sans-serif;"><span style="font-family: Arial, Tahoma, Verdana, sans-serif;">Box Office: 0871 902 5728<span style="color: #333333;"><span style="line-height: 18px;">&nbsp;</span></span></span></p>
762
+ <p style="font-style: normal; font-family: Arial, Tahoma, Verdana, sans-serif;">General Manager: Jon Barrenechea</p>
763
+
764
+
765
+ </div>
766
+ </div>
767
+ <div class="box6_bottom"></div>
768
+ </div>
769
+ </div>
770
+
771
+ <div class="col_spacer"></div>
772
+ <div class="col_single">
773
+
774
+
775
+
776
+
777
+
778
+ <div class="ad">
779
+ <!-- List of tags for the site: Picturehouses, Format "Standard" -->
780
+
781
+ <!-- REMINDER: this function must be pasted inside the website pages. -->
782
+
783
+ <script type="text/javascript">
784
+ sas_tmstp=Math.round(Math.random()*10000000000);sas_masterflag=1;
785
+ function SmartAdServer(sas_pageid,sas_formatid,sas_target) {
786
+ if (sas_masterflag==1) {sas_masterflag=0;sas_master='M';} else {sas_master='S';};
787
+ document.write('<scr'+'ipt src="https://www4.smartadserver.com/call/pubj/' + sas_pageid + '/' + sas_formatid + '/' + sas_master + '/' + sas_tmstp + '/' + escape(sas_target) + '?"></scr'+'ipt>');
788
+ }
789
+ </script>
790
+ <!-- Page : ros -->
791
+
792
+ <script type="text/javascript">
793
+ sas_pageid='23668/160918'; // Page : Picturehouses/ros
794
+ sas_formatid=10021; // Format : MPU 300x250
795
+ sas_target=''; // Targeting
796
+ SmartAdServer(sas_pageid,sas_formatid,sas_target);
797
+ </script>
798
+ <noscript>
799
+ <a href="https://www4.smartadserver.com/call/pubjumpi/23668/160918/10021/M/[timestamp]/?" target="_blank">
800
+ <img src="https://www4.smartadserver.com/call/pubi/23668/160918/10021/M/[timestamp]/?" border="0" alt="" /></a>
801
+ </noscript>
802
+ </div>
803
+
804
+
805
+
806
+
807
+
808
+ <div class="ad">
809
+
810
+
811
+
812
+ <a onClick="_gaq.push(['_trackEvent','advert', 'internal', 'click'])" href="https://itunes.apple.com/gb/app/picturehouse-recommends/id579615856?mt=8" target="_blank">
813
+ <img src="/site-media/images/cityscreen/iPad_MPU_PicRecs30.gif"/>
814
+ </a>
815
+
816
+
817
+
818
+
819
+ </div>
820
+
821
+
822
+
823
+
824
+
825
+ </div>
826
+
827
+
828
+
829
+ </div>
830
+ <div class="clear"></div>
831
+
832
+ <div id="con_footer">
833
+ <a href="http://www.deletelondon.com" target="_blank" id="credit"></a>
834
+ <div id="footer_inner">
835
+ <div class="toplinks txt4">
836
+ <div class="right footer_select" style="width:314px;">
837
+
838
+ <img src="/site-media/images/cityscreen/logo_small.gif" id="logo_small" style="position:relative; left:80px; top:-7px;">
839
+
840
+ <form>
841
+ <select name="selectnav" class="selectnav">
842
+ <option selected="selected" value="">Duke&#39;s At Komedia</option>
843
+
844
+ </select>
845
+ </form>
846
+
847
+ </div>
848
+ <div class="footer_menu">
849
+
850
+ <a href="/cinema/Dukes_At_Komedia/Hires_Info/Venue_Info/">Venue Info</a> <!-- class="DAK" -->
851
+
852
+ <span class="separator">|</span>
853
+
854
+
855
+ <a href="/cinema/Dukes_At_Komedia/Hires_Info/Contact_Us/">Contact Us</a> <!-- class="DAK" -->
856
+
857
+ <span class="separator">|</span>
858
+
859
+
860
+ <a href="/cinema/Dukes_At_Komedia/Faqs/">Faqs</a> <!-- class="DAK" -->
861
+
862
+ <span class="separator">|</span>
863
+
864
+
865
+ <a href="http://corporate.picturehouses.co.uk/venue-hire/">Venue Hire</a> <!-- class="DAK" -->
866
+
867
+ <span class="separator">|</span>
868
+
869
+
870
+ <a href="/cinema/Dukes_At_Komedia/Hires_Info/Jobs/">Jobs</a> <!-- class="DAK" -->
871
+
872
+ <span class="separator">|</span>
873
+
874
+
875
+ <a href="http://picturehouseblog.co.uk/">Blog</a> <!-- class="DAK" -->
876
+
877
+ <span class="separator">|</span>
878
+
879
+
880
+ <a href="http://www.youtube.com/picturehousecinemas">YouTube</a> <!-- class="DAK" -->
881
+
882
+
883
+
884
+ </div>
885
+ </div>
886
+ <div class="bottom">
887
+ <div class="footer_col1 bottomtext">
888
+ <a href="/Privacy/">Privacy &amp; Data Protection</a><br>
889
+ <a href="/Terms/">Terms of Admission</a>
890
+ </div>
891
+ <div class="footer_col2 bottomtext">
892
+ Picturehouse Cinemas Limited is a limited company registered in England as company number 2310403 and its registered office is Power Road Studios, 114 Power Road, Chiswick, London, W4 5PY.
893
+ </div>
894
+ <div class="footer_col3 bottomtext">
895
+ 2004 Picturehouse Cinemas Limited
896
+ </div>
897
+ </div>
898
+ </div>
899
+ </div>
900
+ <!-- Ends Footer -->
901
+ <!-- Google Code for Remarketing tag -->
902
+ <!-- Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. For instructions on
903
+ adding this tag and more information on the above requirements, read the setup guide: google.com/ads/remarketingsetup -->
904
+ <script type="text/javascript">
905
+ /* <![CDATA[ */
906
+ var google_conversion_id = 993965287;
907
+ var google_conversion_label = "ihOBCNmJwAMQ5-n62QM";
908
+ var google_custom_params = window.google_tag_params;
909
+ var google_remarketing_only = true;
910
+ /* ]]> */
911
+ </script>
912
+ <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
913
+ </script>
914
+ <noscript>
915
+ <div style="display:inline;">
916
+ <img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/993965287/?
917
+ value=0&amp;label=ihOBCNmJwAMQ5-n62QM&amp;guid=ON&amp;script=0"/>
918
+ </div>
919
+ </noscript>
920
+
921
+
922
+ </div>
923
+
924
+
925
+ <script type="text/javascript">
926
+
927
+ var _gaq = _gaq || [];
928
+ _gaq.push(['_setAccount', 'UA-7911463-2']);
929
+ _gaq.push(['_trackPageview']);
930
+
931
+ (function() {
932
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
933
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
934
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
935
+ })();
936
+
937
+ </script>
938
+
939
+
940
+
941
+ <div id="fb-root"></div>
942
+ <script>(function(d, s, id) {
943
+ var js, fjs = d.getElementsByTagName(s)[0];
944
+ if (d.getElementById(id)) return;
945
+ js = d.createElement(s); js.id = id;
946
+ js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1&appId=171233602908051";
947
+ fjs.parentNode.insertBefore(js, fjs);
948
+ }(document, 'script', 'facebook-jssdk'));</script>
949
+
950
+
951
+ <div class="apple_overlay" style="left: 50%;margin-left: -350px;width:640px;display:none;" id="contentWrap">
952
+ <script type="text/javascript">
953
+ function load_trailers(filmid) {
954
+ var film = jQuery('#' + filmid).attr('title');
955
+ _gaq.push(['_trackEvent', 'Trailers', 'Play', film]);
956
+ var h ='<div style="font-family:Arial, Helvetica, sans-serif;" id="trailer_header">';
957
+ if (jQuery('#' + filmid).find('span').length > 1) {
958
+ h = h + '<select id="trailerField">';
959
+ jQuery('#' + filmid).find('span').each(function () {
960
+ var f = jQuery(this);
961
+ h = h + '<option class="overlayed_clip" value="' + f.attr('id') + '" ';
962
+ if (f.attr('title') === film) {
963
+ h = h + 'selected ';
964
+ }
965
+
966
+ h = h + '>' + f.attr('title') + '</option>';
967
+ });
968
+ h = h + '</select>';
969
+ }
970
+ h = h + '<br/><br/></div>';
971
+ jQuery('#trailer_header').replaceWith(h);
972
+ jQuery('#trailerField').change(function () {
973
+ var f = jQuery('#' + jQuery(this).val());
974
+ var pid= f.attr('pid');
975
+ var mid= f.attr('mid');
976
+ var mtid= f.attr('mtid');
977
+ var mti= f.attr('mti');
978
+ var fid= f.attr('fid');
979
+ var fti= f.attr('fti');
980
+ triggerEnd();
981
+ if (mtid === 'ftr') {
982
+ _gaq.push(['_trackEvent', 'Features', 'Change', film]);
983
+ _V_("mm_video").src([
984
+ { type: "video/mp4", src: "http://ml5vid.mymovies.net/filmmedia/film/fid" + fid + "/features/avfid" + mid + "/html5/700.mp4" },
985
+ { type: "video/webm", src: "http://ml5vid.mymovies.net/filmmedia/film/fid" + fid + "/features/avfid" + mid + "/html5/700.webm" },
986
+ { type: "video/ogg", src: "http://ml5vid.mymovies.net/filmmedia/film/fid" + fid + "/features/avfid" + mid + "/html5/700.ogv" }
987
+ ]);
988
+ } else {
989
+ _gaq.push(['_trackEvent', 'Trailers', 'Change', film]);
990
+ _V_("mm_video").src([
991
+ { type: "video/mp4", src: "http://ml5vid.mymovies.net/filmmedia/film/fid" + fid + "/trailers/trid" + mid + "/html5/700.mp4" },
992
+ { type: "video/webm", src: "http://ml5vid.mymovies.net/filmmedia/film/fid" + fid + "/trailers/trid" + mid + "/html5/700.webm" },
993
+ { type: "video/ogg", src: "http://ml5vid.mymovies.net/filmmedia/film/fid" + fid + "/trailers/trid" + mid + "/html5/700.ogv" }
994
+ ]);
995
+ }
996
+ triggerSDC(fid, mid, mtid, fti, mti, pid);
997
+ _V_("mm_video").play();
998
+ return false;
999
+
1000
+ });
1001
+
1002
+ return false;
1003
+ }
1004
+ </script>
1005
+
1006
+ <div style="font-family:Arial, Helvetica, sans-serif;" id="trailer_header">
1007
+
1008
+ <br/><br/></div>
1009
+
1010
+ <!-- **** MYMOVIES HTML5 VIDEO TAG **** -->
1011
+ <div class="contentWrap" id="content"><video id="mm_video" class="video-js vjs-default-skin" controls preload="auto" width="640" height="360" data-setup="{}"></video></div>
1012
+
1013
+ <script src="http://partner.mymovies.net/html5/js/manage.js" type="text/javascript"></script>
1014
+
1015
+ <!-- **** END MYMOVIES HTML5 VIDEO TAG **** -->
1016
+
1017
+ </div>
1018
+ </body>
1019
+ </html>