-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalbum.html
8094 lines (7971 loc) · 941 KB
/
album.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html xmlns="http://www.w3.org/1999/xhtml" class="js">
<head>
<style class="vjs-styles-defaults">
.video-js {
width: 300px;
height: 150px;
}
.vjs-fluid {
padding-top: 56.25%
}
</style>
<script type="text/javascript" async="" src="https://sb.scorecardresearch.com/c2/10055482/cs.js"></script><script type="text/javascript" async="" src="https://offer.slgnt.eu/5dc74dba21c6430aae8c857ae1aab497/ae0d91eeafc44f.js?v=e65dcf1ee6918bfa405a6a2507792e1b"></script><script type="text/javascript" async="" src="//targetemsecure.blob.core.windows.net/138526d1-8ff9-4de4-b84a-3a11ec020ede/138526d18ff94de4b84a3a11ec020ede_2_1618949910.js"></script>
<style type="text/css">
.fancybox-margin {
margin-right: 0px;
}
</style>
<style id="poshytip-css-tip-darkgray" type="text/css">
div.tip-darkgray {
visibility: hidden;
position: absolute;
top: 0;
left: 0;
}
div.tip-darkgray table, div.tip-darkgray td {
margin: 0;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
font-style: inherit;
font-variant: inherit;
}
div.tip-darkgray td.tip-bg-image span {
display: block;
font: 1px/1px sans-serif;
height: 11px;
width: 11px;
overflow: hidden;
}
div.tip-darkgray td.tip-right {
background-position: 100% 0;
}
div.tip-darkgray td.tip-bottom {
background-position: 100% 100%;
}
div.tip-darkgray td.tip-left {
background-position: 0 100%;
}
div.tip-darkgray div.tip-inner {
background-position: -11px -11px;
}
div.tip-darkgray div.tip-arrow {
visibility: hidden;
position: absolute;
overflow: hidden;
font: 1px/1px sans-serif;
}
</style>
<style id="poshytip-css-tip-yellow" type="text/css">
div.tip-yellow {
visibility: hidden;
position: absolute;
top: 0;
left: 0;
}
div.tip-yellow table, div.tip-yellow td {
margin: 0;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
font-style: inherit;
font-variant: inherit;
}
div.tip-yellow td.tip-bg-image span {
display: block;
font: 1px/1px sans-serif;
height: 10px;
width: 10px;
overflow: hidden;
}
div.tip-yellow td.tip-right {
background-position: 100% 0;
}
div.tip-yellow td.tip-bottom {
background-position: 100% 100%;
}
div.tip-yellow td.tip-left {
background-position: 0 100%;
}
div.tip-yellow div.tip-inner {
background-position: -10px -10px;
}
div.tip-yellow div.tip-arrow {
visibility: hidden;
position: absolute;
overflow: hidden;
font: 1px/1px sans-serif;
}
</style>
</head>
<body id="lang-en" class="current-usertype-8 current-floor-1687 current-floor-2876 current-floor-2877">
<div style=""></div>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.pixelviilage.com/favicon.ico">
<link href="https://vepcss.b8cdn.com/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link id="Style-Main" href="//vepimg.b8cdn.com/test-drive/Styles/style.css" rel="stylesheet" type="text/css">
<link id="Style-Banner-Gallery" href="//vepimg.b8cdn.com/test-drive/Styles/banner-gallery.css" rel="stylesheet" type="text/css">
<link id="Style-Juqery-Ui" href="//vepimg.b8cdn.com/test-drive/Styles/jquery-ui-1.9.0.custom.css" rel="stylesheet" type="text/css">
<link href="https://vepcss.b8cdn.com/test-drive/Styles/select2.css?v=1.14" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/test-drive/Styles/basic.css?v=1.14">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/test-drive/Styles/ashf-acoordians.css?v=1.14">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/test-drive/Styles/jquery.mThumbnailScroller.css?v=1.14" media="screen">
<link href="https://vepcss.b8cdn.com/test-drive/Styles/tip-darkgray.css?v=1.14" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/test-drive/Styles/fancybox.css?v=1.14" media="screen">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/test-drive/Styles/tablescore.css?v=1.14" media="screen">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/test-drive/Styles/video-js.min.css?v=1.14" media="screen">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/test-drive/Styles/global.css?v=2.18" media="screen">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/test-drive/Styles/global_inner.css?v=1.2" media="screen">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/test-drive/Styles/jquery.toastmessage.css?v=1.14" media="screen">
<link rel="stylesheet" type="text/css" href="https://vepcss.b8cdn.com/css/flags_t.css?v=1.14">
<link rel="stylesheet" type="text/css" href="https://vepimg.b8cdn.com/css/jquery.fileupload.css?v=1.14">
<link rel="stylesheet" type="text/css" href="https://vepimg.b8cdn.com/css/vjf_1329_inner.css?v=1620138899">
<link href="//fonts.googleapis.com/css?family=Lato:300,400,500,700&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<title>Pixel Viilage</title>
<script type="text/javascript" async="" src="https://www.google-analytics.com/plugins/ua/linkid.js"></script><script src="https://targetemsecure.blob.core.windows.net/138526d1-8ff9-4de4-b84a-3a11ec020ede/138526d18ff94de4b84a3a11ec020ede_1.js" type="text/javascript"></script><script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js"></script><script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-WRN5JP"></script><script type="text/javascript">
ServerResponse = '{"EditProfileMode":"Yes","Application":"1329","UserId":"11503889","Username":"[email protected]","email":"[email protected]","user_type_id":"8","ApplicationUrl":"photographyshow.vfairs.com","first_name":"demo","last_name":"user","title":"demo user","user_image":"","SurveyDone":false,"UserResume":null,"csrf_token_name":"ci_csrf_token","csrf_hash":"","BaseUrl":"https:\/\/photographyshow.vfairs.com\/en","Booth":"","defaultLanguage":"en","last_login_at":"0000-00-00 00:00:00"}';
</script>
<script type="text/javascript">
var makeQaChatPublic = '1';
var moderateQuestions = '';
</script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/jquery-1.7.2.min.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/js/1.0/all.min.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/ddsmoothmenu.js?v=1.14"></script>
<script src="https://vepjs.b8cdn.com/js/1.0/bootstrap.min.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/bootstrap3-typeahead.min.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/chatroomtranslation.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/js/1.0/jquery.fancybox.min.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/service_lite.js?v=1.330"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/js/1.0/jquery-ui-1.9.0.custom.min.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/jquery.easing.1.3.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/jquery.mThumbnailScroller.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/jquery.poshytip.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/tooltip-common.js"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/common.js?v=1.14"></script>
<!-- <script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/jquery.blockUI.js?v=1.14"></script>-->
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/videojs-ie8.min.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/js/1.0/video.min.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/starrr.js"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/js/vjfanalytics.js?v=111.020"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/js/jquery.printElement.min.js"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/global.js?v=9.138"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/test-drive/Script/chat.slot.js?v=1.14170"></script>
<!-- file upload -->
<!--script type="text/javascript" src="https://vepjs.b8cdn.com/js/jquery.ui.widget.js"></script-->
<script type="text/javascript" src="https://vepjs.b8cdn.com/js/jquery.iframe-transport.js?v=1.14"></script>
<script type="text/javascript" src="https://vepjs.b8cdn.com/js/1.0/jquery.fileupload.min.js?v=1.14"></script>
<link rel="stylesheet" href="https://vepcss.b8cdn.com/css/bootstrap.fd.css?v=1620138899">
<script src="https://vepjs.b8cdn.com/Scripts/bootstrap.fd.js?v=1620138899"></script>
<script type="text/javascript">
$(document).ready(function(){
$(document).on("click",".ShowMyResume",function() {
var cv_link = "";
//(typeof CVResponseObject.CvLink!="undefined" ? CVResponseObject.CvLink : "");
var UploadOptions = {
multiple: false,
accept:"application/pdf,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,text/plain,image/bmp,image/jpeg,image/pjpeg,image/png,image/jpg",
allowed_types:"pdf, doc, docx, txt, png, jpg, jpeg",
input_name:"custom_drag_uploader",
drag_message: appHash.t[defaultLanguage].msg_drop_resume,
error_no_file: appHash.t[defaultLanguage].msg_error_no_file,
drag_invalid_message: appHash.t[defaultLanguage].msg_error_invalid_file,
error_message: appHash.t[defaultLanguage].msg_upload_error_message,
ok_button: appHash.t[defaultLanguage].lbl_update_resume,
form_action: "//photographyshow.vfairs.com/en/cvupdater",
download_link:cv_link,
cancel_button: appHash.t[defaultLanguage].lbl_resume_close_btn,
download_text: appHash.t[defaultLanguage].lbl_view_current_resume,
remove_message: appHash.t[defaultLanguage].lbl_remove_resume,
title: appHash.t[defaultLanguage].lbl_upload_resume,
auto_close:2500,
dropheight: 200};
// Send Request to get latest cv
var UrlSend= window.location.origin + "/en/getmyresume";
var GetUserResumeInfo = new Object();
GetUserResumeInfo.UserId = "11503889";
GetUserResumeInfo.AppId = "1329";
GetUserResumeInfo.Lang = ApplicationDefaultLanguage;
$.post(UrlSend, GetUserResumeInfo).done(function(response){
// Response Received Filter response
var re = /\s\s+/g;
response = response.replace(re, ' ');
CVResponseObject = JSON.parse(response);
if(CVResponseObject.Status ){
if(CVResponseObject.IsUploaded){
IsResumeUpdated=true;
UploadOptions.download_link = CVResponseObject.CvLink;
}
}
$.FileDialog(UploadOptions).on('files.bs.filedialog', function(ev) {
var files = ev.files;
var text = "";
files.forEach(function(f) {
text += f.name + "<br/>";
});
$("#output").html(text);
}).on('cancel.bs.filedialog', function(ev) {
//console.log("cancel... uploader");
});
});
});
if($("iframe[class='fancybox-iframe']").length >0){
var iframe = $("iframe[class='fancybox-iframe']").contents();
$(document).on("click",iframe.find(".ShowMyResume"),function() {
$(".ShowMyResume").trigger("click");
$("iframe[class='fancybox-iframe']").parents().find(".fancybox-close").trigger("click");
});
}
});
</script>
<script type="text/javascript">
var user_image = "";
UserID = "11503889";
AppId = "1329";
UseOldSlider = "0";
IsResumeUpdated = false;
var userImageUrl = user_image;
if (userImageUrl != ' ' && userImageUrl.length > 0)
{
userImageUrl = ApplicationUrl + '/' + userImageUrl;
}
var userId = UserId;
var user = Username;
var title = title;
var popupWindow = null;
var configHash = {baseUrl: 'https://photographyshow.vfairs.com/en', imgUrl: 'https://vepimg.b8cdn.com/', waitTxt: 'Please Wait...', appId: '1329', cuid: '11503889'};
var appHash = {"chat":"https:\/\/chat.vfairs.com\/chatroom.php","t":{"es":{"swag_bag":"","lbl_order_products":"Order Products","resources":"Resources","swagbag":"Swag Bag","videovault":"Video Vault","itemview":"View","EmailUsMessage":"Mensaje","EmailUsSend":"Enviar","lbl_firstname":"Nombre","lbl_email":"E-mail ID","lbl_contact":"N\u00famero de contacto","TypeMessage":"Escribe tu mensaje aqu\u00ed.","filter_by_partner":"Filter By Partner:","select_all":"Select All","view":"View","email":"Email","remove":"Remove","goback":"Go Back","send":"Send","sendemail":"Send Email","usecommaconcat":"use comma to separate more than one email address","all_booths":"-- All Booths --","play":"Play","chat_slot_recruiter":"RECRUITER","chat_slot_popup_heading":"Reserve a Chat Slot","chat_slot_available":"Available","briefcase_email_sent":"The selected file(s) has been emailed to you successfully.","briefcase_select_atleast":"Please select at least one item.","lbl_upload_resume":"Upload Resume","lbl_upload_resume_btn":"Upload","lbl_update_resume":"Update","lbl_remove_resume":"Remove Resume","lbl_resume_close_btn":"Close","lbl_select_resume_for_apply":"Select Resume to Apply","lbl_resume_upload_or_btn":"OR","lbl_resume_upload_new_btn":"Upload New","lbl_resume_apply":"Apply","lbl_name_your_resume":"Name your Resume","lbl_resume_placeholder":"Example : My New Resume","lbl_apply_with_selected":"Apply with Selected resume","lbl_view_current_resume":"View your current Resume","lbl_upload_resume_to_continue":"Upload Resume to continue","lbl_upload_resume_continue_to_apply":"Continue with Apply","msg_drop_resume":"Drop your Resume here<br\/><br\/>Or Click to Select","msg_error_no_file":"Please select your Resume to upload.","msg_error_invalid_file":"Invalid file type, please upload valid file type","msg_upload_error_message":"An error occured while updating Resume","msg_unable_to_upload_resume":"We were unable to upload your resume. Please try registering again by uploading PDF version of your resume. click the button below to continue","chattify_guide":"<p>To chat with {usertype} at the scheduled time, please follow these steps:<\/p><ul><li>Click on 'Exhibit Hall' from the top menu<\/li><li>Locate the company booth and click on it.<\/li><li>Click on 'Chat' button just below the booth image<\/li><li>Once the chat window opens up, look up the user's name from the list on the right hand side.<\/li><li>Click on the User's name and select 'Invite for Further Discussion'<\/li><\/ul>"},"pt":{"swag_bag":"","lbl_order_products":"Order Products","resources":"Resources","swagbag":"Swag Bag","videovault":"Video Vault","itemview":"View","EmailUsMessage":"Mensagem","EmailUsSend":"Enviar","lbl_firstname":"Primeiro nome","lbl_email":"E-mail ID","lbl_contact":"N\u00famero de contato","TypeMessage":"Digite sua mensagem aqui.","filter_by_partner":"Filter By Partner:","select_all":"Select All","view":"View","email":"Email","remove":"Remove","goback":"Go Back","send":"Send","sendemail":"Send Email","usecommaconcat":"use comma to separate more than one email address","all_booths":"-- All Booths --","play":"Play","chat_slot_recruiter":"RECRUITER","chat_slot_popup_heading":"Reserve a Chat Slot","chat_slot_available":"Available","briefcase_email_sent":"The selected file(s) has been emailed to you successfully.","briefcase_select_atleast":"Please select at least one item.","lbl_upload_resume":"Upload Resume","lbl_upload_resume_btn":"Upload","lbl_update_resume":"Update","lbl_remove_resume":"Remove Resume","lbl_resume_close_btn":"Close","lbl_select_resume_for_apply":"Select Resume to Apply","lbl_resume_upload_or_btn":"OR","lbl_resume_upload_new_btn":"Upload New","lbl_resume_apply":"Apply","lbl_name_your_resume":"Name your Resume","lbl_resume_placeholder":"Example : My New Resume","lbl_apply_with_selected":"Apply with Selected resume","lbl_view_current_resume":"View your current Resume","lbl_upload_resume_to_continue":"Upload Resume to continue","lbl_upload_resume_continue_to_apply":"Continue with Apply","msg_drop_resume":"Drop your Resume here<br\/><br\/>Or Click to Select","msg_error_no_file":"Please select your Resume to upload.","msg_error_invalid_file":"Invalid file type, please upload valid file type","msg_upload_error_message":"An error occured while updating Resume","msg_unable_to_upload_resume":"We were unable to upload your resume. Please try registering again by uploading PDF version of your resume. click the button below to continue","chattify_guide":"<p>To chat with {usertype} at the scheduled time, please follow these steps:<\/p><ul><li>Click on 'Exhibit Hall' from the top menu<\/li><li>Locate the company booth and click on it.<\/li><li>Click on 'Chat' button just below the booth image<\/li><li>Once the chat window opens up, look up the user's name from the list on the right hand side.<\/li><li>Click on the User's name and select 'Invite for Further Discussion'<\/li><\/ul>"},"kr":{"swag_bag":"","lbl_order_products":"Order Products","resources":"Resources","swagbag":"\uc2a4\uc651 \ubc31","videovault":"\ube44\ub514\uc624 \ubcf4\uad00\uc18c","itemview":"\uc804\ub9dd","EmailUsMessage":"\uba54\uc138\uc9c0","EmailUsSend":"Send","lbl_firstname":"\uc774\ub984","lbl_email":"\uc774\uba54\uc77cID","lbl_contact":"\uc804\ud654\ubc88\ud638","TypeMessage":"\ub0b4\uc6a9\uc744 \uc785\ub825\ud574 \uc8fc\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.","filter_by_partner":"Filter By Partner:","select_all":"Select All","view":"View","email":"Email","remove":"Remove","goback":"Go Back","send":"Send","sendemail":"Send Email","usecommaconcat":"use comma to separate more than one email address","all_booths":"-- All Booths --","play":"Play","chat_slot_recruiter":"RECRUITER","chat_slot_popup_heading":"Reserve a Chat Slot","chat_slot_available":"Available","briefcase_email_sent":"The selected file(s) has been emailed to you successfully.","briefcase_select_atleast":"Please select at least one item.","lbl_upload_resume":"Upload Resume","lbl_upload_resume_btn":"Upload","lbl_update_resume":"Update","lbl_remove_resume":"Remove Resume","lbl_resume_close_btn":"Close","lbl_select_resume_for_apply":"Select Resume to Apply","lbl_resume_upload_or_btn":"OR","lbl_resume_upload_new_btn":"Upload New","lbl_resume_apply":"Apply","lbl_name_your_resume":"Name your Resume","lbl_resume_placeholder":"Example : My New Resume","lbl_apply_with_selected":"Apply with Selected resume","lbl_view_current_resume":"View your current Resume","lbl_upload_resume_to_continue":"Upload Resume to continue","lbl_upload_resume_continue_to_apply":"Continue with Apply","msg_drop_resume":"Drop your Resume here<br\/><br\/>Or Click to Select","msg_error_no_file":"Please select your Resume to upload.","msg_error_invalid_file":"Invalid file type, please upload valid file type","msg_upload_error_message":"An error occured while updating Resume","msg_unable_to_upload_resume":"We were unable to upload your resume. Please try registering again by uploading PDF version of your resume. click the button below to continue","chattify_guide":"<p>To chat with {usertype} at the scheduled time, please follow these steps:<\/p><ul><li>Click on 'Exhibit Hall' from the top menu<\/li><li>Locate the company booth and click on it.<\/li><li>Click on 'Chat' button just below the booth image<\/li><li>Once the chat window opens up, look up the user's name from the list on the right hand side.<\/li><li>Click on the User's name and select 'Invite for Further Discussion'<\/li><\/ul>"},"vi":{"EmailUsMessage":"L\u1eddi nh\u1eafn","EmailUsSend":"G\u1eedi","lbl_firstname":"T\u00ean","lbl_email":"\u0110\u1ecba ch\u1ec9 Email","lbl_contact":"S\u0110T","TypeMessage":"Vui l\u00f2ng nh\u1eadp l\u1eddi nh\u1eafn c\u1ee7a b\u1ea1n t\u1ea1i \u0111\u00e2y."},"ru":{"EmailUsMessage":"\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435","EmailUsSend":"\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c","lbl_firstname":"\u0418\u043c\u044f","lbl_email":"Email ID","lbl_contact":"\u0422\u0435\u043b\u0435\u0444\u043e\u043d","TypeMessage":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0442\u0435\u043a\u0441\u0442 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f"},"tr":{"EmailUsMessage":"Mesaj\u0131n\u0131z","EmailUsSend":"G\u00f6nder","lbl_firstname":"\u0130sminiz","lbl_email":"Mail adresiniz","lbl_contact":"Telefon numaran\u0131z","TypeMessage":"Mesaj\u0131n\u0131z\u0131 buraya yaz\u0131n\u0131z"},"tw":{"EmailUsMessage":"\u9700\u8981\u5354\u52a9\u4e8b\u9805","EmailUsSend":"\u9001\u51fa","lbl_firstname":"\u60a8\u7684\u5927\u540d","lbl_email":"\u96fb\u5b50\u90f5\u4ef6","lbl_contact":"\u9023\u7d61\u96fb\u8a71","TypeMessage":"\u8acb\u7559\u8a00\u65bc\u6b64"},"en":{"swag_bag":"","lbl_order_products":"Order Products","resources":"Resources","swagbag":"Swag Bag","videovault":"Video Vault","itemview":"View","EmailUsMessage":"Message","EmailUsSend":"Send","lbl_firstname":"First Name","lbl_email":"Email ID","lbl_contact":"Contact Number","TypeMessage":"Type your message here.","filter_by_partner":"Filter By Partner:","select_all":"Select All","view":"View","email":"Email","remove":"Remove","goback":"Go Back","send":"Send","sendemail":"Send Email","usecommaconcat":"use comma to separate more than one email address","all_booths":"-- All Booths --","play":"Play","chat_slot_recruiter":"RECRUITER","chat_slot_popup_heading":"Reserve a Chat Slot","chat_slot_available":"Available","briefcase_email_sent":"The selected file(s) has been emailed to you successfully.","briefcase_select_atleast":"Please select at least one item.","lbl_upload_resume":"Upload Resume","lbl_upload_resume_btn":"Upload","lbl_update_resume":"Update","lbl_remove_resume":"Remove Resume","lbl_resume_close_btn":"Close","lbl_select_resume_for_apply":"Select Resume to Apply","lbl_resume_upload_or_btn":"OR","lbl_resume_upload_new_btn":"Upload New","lbl_resume_apply":"Apply","lbl_name_your_resume":"Name your Resume","lbl_resume_placeholder":"Example : My New Resume","lbl_apply_with_selected":"Apply with Selected resume","lbl_view_current_resume":"View your current Resume","lbl_upload_resume_to_continue":"Upload Resume to continue","lbl_upload_resume_continue_to_apply":"Continue with Apply","msg_drop_resume":"Drop your Resume here<br\/><br\/>Or Click to Select","msg_error_no_file":"Please select your Resume to upload.","msg_error_invalid_file":"Invalid file type, please upload valid file type","msg_upload_error_message":"An error occured while updating Resume","msg_unable_to_upload_resume":"We were unable to upload your resume. Please try registering again by uploading PDF version of your resume. click the button below to continue","chattify_guide":"<p>To chat with {usertype} at the scheduled time, please follow these steps:<\/p><ul><li>Click on 'Exhibit Hall' from the top menu<\/li><li>Locate the company booth and click on it.<\/li><li>Click on 'Chat' button just below the booth image<\/li><li>Once the chat window opens up, look up the user's name from the list on the right hand side.<\/li><li>Click on the User's name and select 'Invite for Further Discussion'<\/li><\/ul>","product_wish_list":"My Wish List","product_wish_list_export":"Download"},"ar":{"swagbag":"\u062d\u0642\u064a\u0628\u0629 \u063a\u0646\u064a\u0645\u0629","videovault":"Video Vault","itemview":"\u0646\u0638\u0631\u0629"},"fr":{"resources":"Ressources","email":"Email","all_booths":"Tous les stands","select_all":"Tout s\u00e9lectionner","play":"jouer","filter_by_partner":"Filtrer par parter","videovault":"Banque de vid\u00e9os","itemview":"Vue","view":"Vue","remove":"Retirer","EmailUsMessage":"Message","EmailUsSend":"Envoyer","lbl_firstname":"Pr\u00e9nom","lbl_email":"Email ID","lbl_contact":"Num\u00e9ro de t\u00e9l\u00e9phone","TypeMessage":"Tapez votre message ici"}},"swagbag_email":{"from_name":"vFairs.com","from_email":"[email protected]"}};
var ashfaq = "yes";
var currentLangId = 1;
</script>
<script type="text/javascript">
$(document).ready(function () {
$(".show-password-reset-box").click(function () {
$("#change-pwd-modal").modal("show");
});
$("#change-pwd-modal").on("hidden.bs.modal", function () {
$('#change_old_passs-frm .modal-footer button:first').text("Cancel").show();
$('#change_old_passs-frm .modal-footer button:last').show();
$('#change_old_passs-frm .form-group:not(:last-child)').show();
$("#change-pwd-response").removeClass("FormResponseSuccess FormResponseError").html("");
});
// Change Password
if ($("#change_old_passs-frm").length > 0) {
$('#change_old_passs-frm').validate({
rules: {
changepwd: {required: true, minlength: 5},
changepwdconfirm: {required: true, minlength: 5, equalTo: "#changepwd"}
},
highlight: function (element) {
$(element).closest('.form-group').addClass('has-error');
},
unhighlight: function (element) {
$(element).closest('.form-group').removeClass('has-error');
},
errorElement: 'span',
errorClass: 'help-block',
errorPlacement: function (error, element) {
if (element.parent('.input-group').length) {
error.insertAfter(element.parent());
} else {
error.insertAfter(element);
}
},
submitHandler: function () {
var change_pwd_url = location.protocol + '//' + location.host + "/en/change_password";
var chngpwd = new Object();
chngpwd.AppId = "1329";
chngpwd.UserID = "11503889";
chngpwd.email = ApplicationData.Username;
chngpwd.newpassword = $("#changepwdconfirm").val();
chngpwd.Lang = 'en';
$.post(change_pwd_url, chngpwd).done(function (resp) {
var re = /\s\s+/g;
resp = resp.replace(re, ' ');
RespObject = JSON.parse(resp);
if (RespObject.Status) {
$('#change_old_passs-frm')[0].reset();
$('#change_old_passs-frm .form-group:not(:last-child)').hide();
$('#change_old_passs-frm .modal-footer button:last').hide();
$('#change_old_passs-frm .modal-footer button:first').text("Close").show();
$("#change-pwd-response").removeClass("FormResponseError").addClass("FormResponseSuccess").html(RespObject.Message).show();
} else {
$("#change-pwd-response").removeClass("FormResponseSuccess").addClass("FormResponseError").html(RespObject.Message).show();
}
});
}
});
}
});
</script>
<!-- Google Tag Manager -->
<script type="text/javascript">
(function(w,d,s,l,i)
{
w[l]=w[l]||[];
w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});
var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';
j.async=true;
j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WRN5JP');
</script>
<!-- End Google Tag Manager -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-147645112-15"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-147645112-15');
</script>
<style type="text/css">
.main-nav, .vjf-nav ul.dropdown-menu, #vjf-notif.vjf-notif-theme7 .close-notif, #vjf-notif.vjf-notif-theme7 .vjf-notif-row a, #vjf-notif.vjf-notif-theme7 .vjf-notif-row button, #vjf-notif.vjf-notif-theme7 .vjf-notif-row a.btn, #vjf-notif.vjf-notif-theme7 .vjf-notif-row button.btn, #live-stats.vjf-notif-theme7 .close-notif {background: #333333}.main-nav ul li {border-right-color: #ffffff}.leicester-booth-top-logo, .leicester-booth-top-logo img {display: block !important}.thumbs-logo-container {display: none !important}.mTS_horizontal .mTSContainer {background-image: url("{CDN_IMG_BASE_URL}/uploads/vjfnew/1329/content/images/1599615708ukjbg-jpg1599615708.jpg") !important}.view-booth-bg {background-image: url("{CDN_IMG_BASE_URL}/uploads/vjfnew/1329/content/images/1599615708ukjbg-jpg1599615708.jpg") !important}.webinar-section-head, .wda-tabs .nav-tabs, .wda-tabs .nav-tabs > li > a {background: #008fc3 !important; border-bottom-color: #008fc3 !important}.wda-tabs .btn {background: #f38300 !important}.modal-header {background-color: #0056b3 !important}<style type="text/css">.main-nav, .vjf-nav ul.dropdown-menu, #vjf-notif.vjf-notif-theme7 .close-notif, #vjf-notif.vjf-notif-theme7 .vjf-notif-row a, #vjf-notif.vjf-notif-theme7 .vjf-notif-row button, #vjf-notif.vjf-notif-theme7 .vjf-notif-row a.btn, #vjf-notif.vjf-notif-theme7 .vjf-notif-row button.btn, #live-stats.vjf-notif-theme7 .close-notif {background: #333333}.main-nav ul li {border-right-color: #ffffff}.leicester-booth-top-logo, .leicester-booth-top-logo img {display: block !important}.thumbs-logo-container {display: none !important}.mTS_horizontal .mTSContainer {background-image: url("https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/images/1599615708ukjbg-jpg1599615708.jpg") !important}.view-booth-bg {background-image: url("https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/images/1599615708ukjbg-jpg1599615708.jpg") !important}.webinar-section-head, .wda-tabs .nav-tabs, .wda-tabs .nav-tabs > li > a {background: #008fc3 !important; border-bottom-color: #008fc3 !important}.wda-tabs .btn {background: #f38300 !important}.modal-header {background-color: #0056b3 !important}
</style>
<!-- Hidden Booth Template Start -->
<div id="BoothHtml" style="display:none;">
<div onclick="showLargeBooth('LargeViewWrapper');" id="Small-Booth-Main-Div-Area-LargeViewWrapper" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="UNIVERSITY-TITLE" href="javascript:;" onclick="showBooth('LargeViewWrapper');"> <img university-logo-top="" alt="UNIVERSITY-TITLE" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper" class="demo-tip-darkgray" title="UNIVERSITY-TITLE" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper" university-small-booth="" alt="UNIVERSITY-TITLE"> </a> </div>
</div>
<!-- Hidden Booth Template End -->
<!-- Booth Thumb Template -->
<div style="display:none;" id="ThumbsPanel">
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="UNIVERSITY-TITLE" onclick="showBooth('LargeViewWrapper')" href="javascript:;"> <img university-logo="" alt="Logo"> </a> </div>
</div>
</div>
<div style="display:none;" id="BoothsThumbsTpl">
<div class="thumbs-logo-container" id="BeforeBoothThumbs"> </div>
</div>
<!-- Booth Thumb Template End -->
<!-- Booth Panel Template -->
<div style="display:none;" id="BoothsPanel">
<div class="contents-dynamic">
<div class="bg" id="BoothsAndThumbContainer">
<!--div class="person-1"></div-->
<!-- Progace bar start here-->
<div class="find-job-bayt-logo">
<div class="video"> <a class="Top-Videos-List-Tv" href="javascript:;" id="TopBanner-Video-"></a> </div>
</div>
<table id="MainBoothTable" cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr id="BeforeBooths"></tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Booth Panel Template End -->
<!-- Booth Large View Template -->
<div id="BoothsLargeViewTemplate" style="display: none;">
<div id="LargeViewWrapperTmp" style="display: none;" class="Main-Large-View-Booth-Class-Ash">
<div class="body-container">
<div class="view-booth-bg" style="background-image: url('images/main_banner_bg.jpg');">
<div class="back-to-floor"> <a href="javascript:;" onclick="hideBooth('LargeViewWrapperTmp');">
<div class="BacktoTheFloor AshToolTip" id="BacktoTheFloorBtnText" style="width: 120px; font-size: 15px;" title="Back to Floor">Back to Floor</div>
</a> </div>
<div class="booth-lg-view">
<div id="Booth-Banners-All-" class="booth-banners"></div>
<img class="AshToolTip" university-large-booth="" alt="UNIVERSITY-TITLE" title="" border="0"> </div>
</div>
<div id="Prev-Next-Booth-Btns" class="bighrader-bot-bg" style="display: block; position: relative;">
<div class="pre-but"> <a href="javascript:;" id="Prev-Booth-Anchor" onclick="showLargeBooth('Prev-Booth-Id');">
<div class="PrevFloorBtn AshToolTip" id="PrevBoothBtnText">Previous</div>
</a> </div>
<div class="mob-booth-menu all-buts-container">
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tbody>
<tr>
<td align="center" valign="middle"><table border="0" cellpadding="0" cellspacing="0" align="center">
<tbody>
<tr id="large-Mob-Booths-Top-Menus-"></tr>
</tbody>
</table></td>
</tr>
</tbody>
</table>
</div>
<div class="all-buts-container">
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tbody>
<tr>
<td align="center" valign="middle"><table border="0" cellpadding="0" cellspacing="0" align="center">
<tbody>
<tr id="Booths-Top-Menus-"></tr>
</tbody>
</table></td>
</tr>
</tbody>
</table>
</div>
<div class="next-but"> <a href="javascript:;" id="Next-Booth-Anchor" onclick="showLargeBooth('Next-Booth-Id');">
<div class="NextFloorBtn AshToolTip" id="NextBoothBtnText" title="Next">Next</div>
</a> </div>
</div>
<div class="clearfix"></div>
</div>
<div class="home-container">
<div class="left" style="border: 0px;">
<div id="tabs1" style="height: 231px; width: 628px;" class="TabsContainerForAllBooths ui-tabs ui-widget ui-widget-content ui-corner-all">
<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" role="tablist">
<li class="ui-state-default ui-corner-top ui-tabs-active ui-state-active" role="tab" tabindex="0" aria-controls="tabs-1" aria-labelledby="ui-id-1" aria-selected="true"><a href="#tabs-1" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-1">COMPANY</a></li>
<li id="Uni-Vid-Li-LargeViewWrapperTmp" class="ui-state-default ui-corner-top" role="tab" tabindex="-1" aria-controls="tabs-2" aria-labelledby="ui-id-2" aria-selected="false"><a href="#tabs-2" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-2">VIDEOS</a></li>
<li id="Uni-Docs-Li-LargeViewWrapperTmp" class="ui-state-default ui-corner-top" role="tab" tabindex="-1" aria-controls="tabs-3" aria-labelledby="ui-id-3" aria-selected="false"><a href="#tabs-3" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-3">DOCUMENTS</a></li>
<li id="Uni-Job-Li-LargeViewWrapperTmp" class="ui-state-default ui-corner-top" role="tab" tabindex="-1" aria-controls="tabs-4" aria-labelledby="ui-id-4" aria-selected="false"><a href="#tabs-4" class="ui-tabs-anchor" role="presentation" tabindex="-1" id="ui-id-4">JOB VACANCIES</a></li>
</ul>
<div id="tabs-1" aria-labelledby="ui-id-1" class="ui-tabs-panel ui-widget-content ui-corner-bottom" role="tabpanel" aria-expanded="true" aria-hidden="false"> <img university-logo="" alt="UNIVERSITY-TITLE" class="Booth-Tab-Comps-Logo AshToolTip" title="UNIVERSITY-TITLE" align="left" border="0" style="margin-right: 5px;">
<h1>UNIVERSITY-TITLE</h1>
<p id="Uni-Profile-Content"></p>
</div>
<div id="tabs-2" aria-labelledby="ui-id-2" class="ui-tabs-panel ui-widget-content ui-corner-bottom" role="tabpanel" aria-expanded="false" aria-hidden="true" style="display: none;">
<div class="tab-video">
<ul id="Video-LargeBooth-Inside-">
</ul>
</div>
</div>
<div id="tabs-3" aria-labelledby="ui-id-3" class="ui-tabs-panel ui-widget-content ui-corner-bottom" role="tabpanel" aria-expanded="false" aria-hidden="true" style="display: none;">
<div class="tab-video">
<ul id="Document-LargeBooth-Inside-">
</ul>
</div>
</div>
<div id="tabs-4" aria-labelledby="ui-id-4" class="ui-tabs-panel ui-widget-content ui-corner-bottom" role="tabpanel" aria-expanded="false" aria-hidden="true" style="display: none;">
<div class="tab-video" id="Jobs-LargeBooth-Inside-"> </div>
</div>
</div>
</div>
<div class="user-online-container">
<div class="user-online-top AshToolTip" title="USERS ONLINE" style="text-align: left; direction: ltr;">USERS ONLINE</div>
<div class="user-online-bot">
<ul id="User-Online-Booth-Inside-" title="UNIVERSITY-TITLE">
</ul>
</div>
</div>
<div class="clear"></div>
</div>
</div>
</div>
<!-- Booth Large View Template End -->
<!--- Arabic Profile Html Template -->
<div id="ArabicProfileView" style="display: none;"></div>
<div id="BoxMsgContainer" style="display: none;">
<center>
<h2 style="margin-top: 200px;" id="BoxMsgTxt"></h2>
</center>
</div>
<div id="VideoPlayerClone" style="display: none;"></div>
<div style="display:none" id="process-time-3">0.12492513656616</div>
<!-- body start here -->
<div class="wrapper hall-wrap">
<div class="vjf-header" role="Header">
<div class="slim-bar" style="position: relative">
<div class="col-sm-6 pull-right">
<ul style="text-align: right">
<li>Need Technical Assistance?
<div id="bar-sep"></div>
<a href="mailto:[email protected]" target="_blank"><span class="glyphicon glyphicon-envelope"></span> [email protected]</a> </li>
</ul>
</div>
<div class="clearfix"></div>
</div>
<div class="wrap-header">
<div class="col-md-3"> <a href="#"><img src="https://www.pixelviilage.com/logo.png?v=2" class="logo" alt="Logo"></a>
<nav class="navbar navbar-default short-menu">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".hall-wrap" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
</div>
</div>
<!-- /.container-fluid -->
</nav>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav nav-tabs">
<li> <img src="https://vepimg.b8cdn.com/uploads/vjf/common/default-user.png" class="user-dp" alt="Avatar"> <span class="menu-user-name">demo user</span> </li>
<li> <a href="/test-drive/index.php?Logout=1" title="log out"><span class="glyphicon glyphicon-log-out"></span> Logout</a> </li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<div class="col-md-4">
<p id="announcement-section"></p>
<div class="top-search"> <span class="icon-search"></span>
<input type="text" class="typeahead form-control" placeholder="Search for a Booth">
</div>
<div class="clearfix"></div>
</div>
<div class="col-md-5 menu-top">
<ul class="nav nav-tabs">
<li role="presentation" class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false"> <img src="https://vepimg.b8cdn.com/uploads/vjf/common/default-user.png" class="user-dp" alt="Avatar"> <span class="menu-user-name">demo user</span> <span class="caret"></span> </a>
<ul class="dropdown-menu">
<li><a href="/en/logout" title="log out"><span class="glyphicon glyphicon-log-out"></span> Logout</a></li>
</ul>
</li>
</ul>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
<div class="modal fade" id="user-profile-modal">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Profile</h4>
</div>
<div class="modal-body"> </div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
</div>
<script type="text/javascript">
configHash.boothJson = [{"id":"29961","name":"Click Props","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1593779029blob1593779029"},{"id":"29975","name":"Fujifilm X Series & GFX","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597384309blob1597384309"},{"id":"38201","name":"Deity Microphones","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598538421blob1598538421"},{"id":"32717","name":"Analogue Spotlight","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599644313blob1599644313"},{"id":"32727","name":"Nikon Sport Optics","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599228065blob1599228065"},{"id":"31728","name":"Future Subscriptions","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599053405blob1599053405"},{"id":"29944","name":"Affinity Photo","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599557648blob1599557648"},{"id":"29980","name":"Hahnel Industries Ltd (Zhiyun, Leofoto, Litra & Tokina)","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594120399blob1594120399"},{"id":"35132","name":"Digital Camera World: International Opportunities","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599657436blob1599657436"},{"id":"30024","name":"ARTIBO LAB","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598865792blob1598865792"},{"id":"30030","name":"PiXAPRO","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599128514blob1599128514"},{"id":"30122","name":"Paterson Photographic & Benbo","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599217815blob1599217815"},{"id":"33732","name":"FUJIFILM Wonder Photo Shop","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599228025blob1599228025"},{"id":"39643","name":"Westcott Lighting (F.J. Westcott)","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597929210blob1597929210"},{"id":"29958","name":"CEWE ","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599221554blob1599221554"},{"id":"29969","name":"Everybooth","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1600248557blob1600248557"},{"id":"40634","name":"K&F Concept","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598521058blob1598521058"},{"id":"32705","name":"Disabled Photographers' Society","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1595514160blob1595514160"},{"id":"33733","name":"instax","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1596456885blob1596456885"},{"id":"32710","name":"Selfie Postbox","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599581069blob1599581069"},{"id":"29937","name":"99 Percent Lifestyle","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598554579blob1598554579"},{"id":"29967","name":"Epson","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597222558blob1597222558"},{"id":"36882","name":"Creative Photography Experience","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1595867602blob1595867602"},{"id":"40324","name":"Peak Design","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599059384blob1599059384"},{"id":"33934","name":"Global Distribution - Distributing Leading Technology Worldwide","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1596823409blob1596823409"},{"id":"32709","name":"photoguard","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1596031156blob1596031156"},{"id":"50918","name":"CameraWorld","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598969669blob1598969669"},{"id":"29947","name":"nPhoto","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599486700blob1599486700"},{"id":"29972","name":"Fotopro Tripod","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1593997597blob1593997597"},{"id":"35094","name":"RPS","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598953571blob1598953571"},{"id":"29989","name":"London Camera Exchange - LCE","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594216864blob1594216864"},{"id":"30123","name":"Wacom","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598429836blob1598429836"},{"id":"32707","name":"Sennheiser ","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597828754blob1597828754"},{"id":"31720","name":"The Guild of Photographers","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1596754863blob1596754863"},{"id":"31726","name":"Fotospeed","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598266911blob1598266911"},{"id":"29983","name":"Insta360","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599618629blob1599618629"},{"id":"43554","name":"GraphiStudio","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597760966blob1597760966"},{"id":"43563","name":"Infocus Photography and Videography Insurance","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598608118blob1598608118"},{"id":"35118","name":"Vanguard","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1596464089blob1596464089"},{"id":"32706","name":"Panasonic LUMIX","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597830840blob1597830840"},{"id":"31729","name":"SheClicks","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598525226blob1598525226"},{"id":"29943","name":"Adaptalux","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599141764blob1599141764"},{"id":"29964","name":"Contour Design UK Ltd","logo":"https:\/\/vepimg.b8cdn.com\/"},{"id":"29981","name":"Hahnem\u00fchle","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599641720blob1599641720"},{"id":"29987","name":"Just Limited","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1595579615blob1595579615"},{"id":"43565","name":"PhotoXport","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597776760blob1597776760"},{"id":"30021","name":"Nikon ","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594681811blob1594681811"},{"id":"33919","name":"The Societies of Photographers","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594893570blob1594893570"},{"id":"29946","name":"AJ's","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599051110blob1599051110"},{"id":"29965","name":"Drone Pilot Academy","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599152885blob1599152885"},{"id":"35108","name":"Innova Art and Fine Art Foto","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598533444blob1598533444"},{"id":"30025","name":"Olympus","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597762228blob1597762228"},{"id":"30039","name":"The Civil Aviation Authority","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599818442blob1599818442"},{"id":"33928","name":"UK Shooters","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1596961459blob1596961459"},{"id":"45742","name":"Alamy","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599546288blob1599546288"},{"id":"32725","name":"Nikon School","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598951825blob1598951825"},{"id":"29960","name":"Chillblast","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599140636blob1599140636"},{"id":"30041","name":"The Photographer's Guides","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598279260blob1598279260"},{"id":"31717","name":"SIM Imaging & SIM Lab","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1595844460blob1595844460"},{"id":"31731","name":"BCMA - Branded Content Marketing Association ","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597854521blob1597854521"},{"id":"29984","name":"Intellectual Property Office","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1600331230blob1600331230"},{"id":"29985","name":"Interfit Photographic Ltd","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598955230blob1598955230"},{"id":"35113","name":"Samyang & Xeen Lenses UK","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1595351312blob1595351312"},{"id":"30003","name":"M\u00e9decins Sans Fronti\u00e8res - Doctors Without Borders","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599814495blob1599814495"},{"id":"30044","name":"UK Model Events","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594027781blob1594027781"},{"id":"31732","name":"Sony","logo":"https:\/\/vepimg.b8cdn.com\/"},{"id":"29999","name":"Light Blue Software","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1596472746blob1596472746"},{"id":"38196","name":"Holdan Video Products","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598266095blob1598266095"},{"id":"39999","name":"Tamron","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599141257blob1599141257"},{"id":"30029","name":"Photo Journey","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599134203blob1599134203"},{"id":"30033","name":"R\u00d8DE Microphones","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1595241771blob1595241771"},{"id":"33937","name":"Luminar AI ","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599229543blob1599229543"},{"id":"31715","name":"Digitalab","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597782367blob1597782367"},{"id":"29966","name":"Dunns Imaging Group Ltd.","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598629595blob1598629595"},{"id":"29977","name":"Gillis London","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599822522blob1599822522"},{"id":"38198","name":"Music Vine","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599123300blob1599123300"},{"id":"30047","name":"Wex Photo Video","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594050825blob1594050825"},{"id":"32708","name":"Sood Studios","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598690930blob1598690930"},{"id":"39646","name":"PermaJet","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599056754blob1599056754"},{"id":"31725","name":"Rocky Nook","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1595615512blob1595615512"},{"id":"29955","name":"CanvasBay UK LTD","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599237577blob1599237577"},{"id":"31723","name":"Coleg Gwent","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599069642blob1599069642"},{"id":"29986","name":"Savvy Studio","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598947391blob1598947392"},{"id":"48713","name":"Wenzhou Bolang Photographic Equipment Manufacturing Co., Ltd.","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598521653blob1598521653"},{"id":"29988","name":"Kase Filters UK","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597847590blob1597847590"},{"id":"30049","name":"Wildfoot Travel","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598006991blob1598006991"},{"id":"35128","name":"theimagefile","logo":"https:\/\/vepimg.b8cdn.com\/"},{"id":"31734","name":"MyCaseBuilder","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599228372blob1599228372"},{"id":"29970","name":"Folio Albums","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599741243blob1599741243"},{"id":"33936","name":"Artpoint Albums","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599388750blob1599388750"},{"id":"33075","name":"Spider Holster","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599117375blob1599117375"},{"id":"30027","name":"Orangemonkie ","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1595930035blob1595930035"},{"id":"30035","name":"Sigma Imaging","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594034466blob1594034466"},{"id":"31737","name":"Irix ","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597291997blob1597291997"},{"id":"30026","name":"Omnicharge","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599214520blob1599214520"},{"id":"30028","name":"Phot.tees Clothing & Design","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599396550blob1599396550"},{"id":"30031","name":"plot-IT","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598786410blob1598786410"},{"id":"31733","name":"EOS Academy | Canon Photography Training","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599246805blob1599246805"},{"id":"35838","name":"Camera Rescue","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599636878blob1599636878"},{"id":"29962","name":"Colorworld Imaging","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597291106blob1597291106"},{"id":"30042","name":"The Right Kit","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1596045844blob1596045844"},{"id":"30112","name":"Kowa Sporting Optics","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597397130blob1597397130"},{"id":"39637","name":"Plastic Sandwich","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598009308blob1598009308"},{"id":"31724","name":"Worldwide Explorers & Skye Photo Academy","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594659188blob1594659188"},{"id":"29996","name":"Lenses For Hire Ltd","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599726157blob1599726157"},{"id":"29998","name":"Liebowitz Law Firm, PLLC","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1596029052blob1596029052"},{"id":"30032","name":"Pro Print Solutions","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1595864268blob1595864268"},{"id":"30043","name":"The Timelapse Store","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594390177blob1594390177"},{"id":"31735","name":"Matterport","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1597312215blob1597312215"},{"id":"29974","name":"Frames for Photographers","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599128024blob1599128024"},{"id":"29997","name":"LensPimp","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1594205874blob1594205874"},{"id":"30001","name":"Loupedeck","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1600164720blob1600164720"},{"id":"30037","name":"Stanford Marsh","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598790913blob1598790913"},{"id":"35416","name":"Topaz Labs","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599545028blob1599545028"},{"id":"30045","name":"Vallerret Photography Gloves","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599047805blob1599047805"},{"id":"30046","name":"Wedprint Pro","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599637607blob1599637607"},{"id":"32711","name":"Teamwork Digital","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1600163629blob1600163629"},{"id":"53269","name":"ShiftCam","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599230615blob1599230615"},{"id":"60656","name":"Canon - Reception","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1600100900blob1600100900"},{"id":"44146","name":"Canon Professional Services","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599838672blob1599838672"},{"id":"44148","name":"Canon - EOS Cameras","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599841419blob1599841419"},{"id":"44149","name":"Canon - EOS Lens & Accessories","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599840399blob1599840399"},{"id":"44151","name":"Canon - Compact Cameras","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599841445blob1599841445"},{"id":"44152","name":"Canon - Pro Video","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599841475blob1599841475"},{"id":"44154","name":"Canon - Large Format Photo Printers","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1598264342blob1598264342"},{"id":"44153","name":"Canon - Printers","logo":"https:\/\/vepimg.b8cdn.com\/\/uploads\/vjfnew\/1329\/content\/docs\/1599841510blob1599841510"}]</script>
<!-- Home body start here -->
<div class="body-wrapper">
<div class="main-nav vjf-nav" role="navigation">
<ul>
<li ><a role="button" href="home.html" data-id="11095"><span class="fa fa-building-o"></span>Welcome Area</a></li>
<li ><a data-cms-id="22264" role="button" href="exhibition.html" data-id="11096"><span class="fa fa-building"></span> Exhibition Halls</a></li>
<li ><a role="button" href="main.html" data-id="11100"><span class="fa fa-building"></span> Main Stage</a></li>
<li ><a data-cms-id="16387" role="button" href="burst.html" data-id="18117"><span class="fa fa-building"></span> Burst Mode Hub</a></li>
<li ><a role="button" href="#" data-id="24832"><span class="fa fa-search"></span> Product Search</a></li>
<li ><a role="button" href="help.html" data-id="11102"><span class="fa fa-info-circle"></span> Help & Info</a></li>
<li ><a role="button" href="#" data-id="11099"><span class="fa fa-shopping-bag"></span> Show Bag</a></li>
</ul>
</div>
<div class="main-wrapper">
<!-- Home container start here -->
<div class="progace-bar" id="FancyLoaderBox" style="display:none;">
<div class="left"> <img src="https://vepimg.b8cdn.com/test-drive/images/clock3.gif" alt="Please Wait..." title="Please Wait..." border="0" style="-webkit-border-radius: 21px;-moz-border-radius: 15px;border-radius: 19px;"> </div>
<div class="right PleaseWaitTxtBox">Please Wait ...</div>
</div>
<div class="home-wrapper" style="z-index: 90;">
<div id="hallview" style="display: block;">
<div class="body-container">
<!-- Progace bar start here-->
<div class="progace-bar" id="pbBooth" style="z-index: 50000; display: none;">
<div class="left"> <img src="https://vepimg.b8cdn.com/test-drive/images/clock3.gif" alt="Loading Booths..." title="Loading Booths..." border="0"> </div>
<div class="right" id="LoadingBooths">Loading Booths ...</div>
</div>
<!-- Progace bar close here-->
<!-- Big header start here -->
<!--Progace bar start here-->
<div class="progace-bar" id="pbPageLoad" style="display: none;">
<div class="left"> <img src="https://vepimg.b8cdn.com/test-drive/images/clock3.gif" alt="Please Wait..." title="Please Wait..." border="0"> </div>
<div class="right PleaseWaitTxtBox" id="PleaseWait">Please Wait ...</div>
</div>
<div class="progace-bar" id="pbMyProfile" style="display:none;">
<div class="left"> <img src="https://vepimg.b8cdn.com/test-drive/images/clock3.gif" alt="Please Wait..." title="Please Wait..." border="0"> </div>
<div class="right" id="LoadingProfile">Loading Profile ...</div>
</div>
<div class="progace-bar" id="pbLoading" style="display:none;">
<div class="left"> <img src="https://vepimg.b8cdn.com/test-drive/images/clock3.gif" alt="Please Wait..." title="Please Wait..." border="0"> </div>
<div class="right PleaseWaitTxtBox">Please Wait ...</div>
</div>
<!--Progace bar close here-->
<!-- Global Tabs -->
<!-- Documents Tab -->
<div id="Tab-Global-Documents-Tab" style="width:922px; height:438px; margin:0px auto 0px auto; padding:0px 0px 0px 0px;position:absolute; display:none;z-index: 150;">
<div class="back-to-floor"> <a href="javascript:;" onclick="HideGlobalTabs();">
<div class="BacktoTheFloor AshToolTip" style="font-size: 15px;">Back to Floor</div>
</a> </div>
<div id="Tab-Global-Documents-Tab-Data" class="GlobalTabsDataDiv">
<div class="container-j-tabs">
<header class="clearfix">
<h1 id="Available-Documents-Heading">Available Documents VJF Iraq</h1>
</header>
<div class="Global-Tabs-Main">
<ul id="Global-Documents-Tab-Booth-List" class="cbp-ntaccordion">
<li>
<h3 class="cbp-nttrigger">Canon - EOS Lens & Accessories</h3>
<div class="cbp-ntcontent">
<ul id="Global-Documents-Company-Documents-List-44149" class="cbp-ntsubaccordion">
</ul>
</div>
</li>
<li>
<h3 class="cbp-nttrigger">Analogue Spotlight</h3>
<div class="cbp-ntcontent">
<ul id="Global-Documents-Company-Documents-List-32717" class="cbp-ntsubaccordion">
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Documents Tab -->
<!-- Videos Tab -->
<div id="Tab-Global-Videos-Tab" style="width:922px; height:438px; margin:0px auto 0px auto; padding:0px 0px 0px 0px;position:absolute; display:none;z-index: 150;">
<div class="back-to-floor"> <a href="javascript:;" onclick="HideGlobalTabs();">
<div class="BacktoTheFloor AshToolTip" style="font-size: 15px;">Back to Floor</div>
</a> </div>
<div id="Tab-Global-Videos-Tab-Data" class="GlobalTabsDataDiv">
<div class="container-j-tabs">
<header class="clearfix">
<h1 id="Available-Videos-Heading">Available Videos VJF Iraq</h1>
</header>
<div class="Global-Tabs-Main">
<ul id="Global-Videos-Tab-Booth-List" class="cbp-ntaccordion">
<li>
<h3 class="cbp-nttrigger">Canon - EOS Lens & Accessories</h3>
<div class="cbp-ntcontent">
<ul id="Global-Videos-Tab-Booth-List-44149" class="cbp-ntsubaccordion">
</ul>
</div>
</li>
<li>
<h3 class="cbp-nttrigger">Analogue Spotlight</h3>
<div class="cbp-ntcontent">
<ul id="Global-Videos-Tab-Booth-List-32717" class="Videos-for-tracking-clicks">
<li style="list-style: none;" ashfaq-videoid="184329"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=TyEYZXIH_AY&feature=youtu.be" target="_blank">
<h4 class="cbp-nttrigger">Chroma - The Unique Large Format Camera System</h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="184330"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=wLy-vmtcHBo&feature=youtu.be" target="_blank">
<h4 class="cbp-nttrigger">Introducing the Camera Rescue project</h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="193806"><a style="color: #47a3da;text-decoration: none;" href="https://player.vimeo.com/video/457677578?autoplay=1" target="_blank">
<h4 class="cbp-nttrigger">How to take 3D pictures with your existing camera</h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="171819"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=jRNQ9zE2L5c&feature=youtu.be" target="_blank">
<h4 class="cbp-nttrigger">A Primer into Digitising Film with a Digital Camera</h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="176174"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=eKegqysWtZg" target="_blank">
<h4 class="cbp-nttrigger">Silverpan Filmlab - Your Film, Your Way </h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="176175"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=P3pqmnhyWs8&" target="_blank">
<h4 class="cbp-nttrigger">A Cyanotype Printing demonstration </h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="176176"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=0Gp0rcatmHM&feature=youtu.be" target="_blank">
<h4 class="cbp-nttrigger">Breaking the MYTH of a Good Photographer</h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="173979"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=xMKJCmvuX0c" target="_blank">
<h4 class="cbp-nttrigger">Beyond Black and White - Exploring the Wonderland of Film Photography</h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="173980"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=vb_e51oQg4M" target="_blank">
<h4 class="cbp-nttrigger">Kosmo Foto - A boutique British film brand</h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="173981"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=wGlfbl5Oa_k&feature=youtu.be" target="_blank">
<h4 class="cbp-nttrigger">A beginner's guide to Soviet cameras</h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="187293"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=ez8h62a-iVY" target="_blank">
<h4 class="cbp-nttrigger">Setting up a darkroom for your first print</h4>
</a></li>
<li style="list-style: none;" ashfaq-videoid="192718"><a style="color: #47a3da;text-decoration: none;" href="https://www.youtube.com/watch?v=FjQFgHgKZWE&feature=youtu.be" target="_blank">
<h4 class="cbp-nttrigger">Studio C-41: Behind the Scenes in Running a Podcast </h4>
</a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Videos Tab -->
<!-- Jobs Tab -->
<div id="Tab-Global-Jobs-Tab" style="width:922px; height:438px; margin:0px auto 0px auto; padding:0px 0px 0px 0px;position:absolute; display:none;z-index: 150;">
<div class="back-to-floor"> <a href="javascript:;" onclick="HideGlobalTabs();">
<div class="BacktoTheFloor AshToolTip" style="font-size: 15px;">Back to Floor</div>
</a> </div>
<div id="Tab-Global-Jobs-Tab-Data" class="GlobalTabsDataDiv">
<div class="container-j-tabs">
<header class="clearfix">
<h1 id="Available-Jobs-Heading">Available Jobs</h1>
</header>
<div class="Global-Tabs-Main">
<ul id="Global-Jobs-Tab-Booth-List" class="cbp-ntaccordion">
</ul>
</div>
</div>
</div>
</div>
<!-- Jobs Tab -->
<!-- Global Tabs close here -->
<div class="bighrader-bg">
<div class="person-1"></div>
<div class="bighrader-left-arrow NavigateArrows" style="opacity: 0.3; display: block;"> <a href="javascript:;"><img src="https://vepimg.b8cdn.com/test-drive/images/bighrader-left-arrow.png" alt="Left" title="Left" border="0"></a> </div>
<div class="bighrader-right-arrow NavigateArrows" style="opacity: 0.3; display: block;"> <a href="javascript:;"><img src="https://vepimg.b8cdn.com/test-drive/images/bighrader-right-arrow.png" alt="Right" title="Right" border="0"></a> </div>
<div id="gallery_wrapper" class="banner_wrapper" style="visibility: visible; height: 438px; display: block;">
<div id="banner_container2" class="banner_container mThumbnailScroller _mTS_1 mTS-hover-classic mTS_no_scroll" style="height: 438px;">
<div class="thumbScroller" style="height:438px;;" id="floor-hall-1687">
<div class="container" id="DynamicBoothsContainerParent" style="height:438px;;">
<ul id="DynamicBoothsContainer" class="mThumbnailScroller _mTS_4 mTS-hover-classic" style="">
<div id="mTS_4" class="mTSWrapper mTS_horizontal" style="overflow: inherit;">
<div class="mTSAutoContainer mTSContainer" id="mTS_4_container" style="position: relative; top: 0px; left: 0px; width: 12166px; overflow: inherit;">
<div class="content">
<div class="bg" id="BoothsAndThumbContainer-1">
<!--div class="person-1"></div-->
<!-- Progace bar start here-->
<div class="find-job-bayt-logo">
<div class="video"> <a class="Top-Videos-List-Tv" href="javascript:;" id="TopBanner-Video-1"></a> </div>
</div>
<table id="MainBoothTable-1" cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr id="BeforeBooths-1">
<td align="center" class="leicester-booth" id="SmallBooth-TD-32717"><div onclick="showLargeBooth('LargeViewWrapper-32717');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-32717" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="Analogue Spotlight" href="javascript:;" onclick="showBooth('LargeViewWrapper-32717');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1599644313blob1599644313" =""="" alt="Analogue Spotlight" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-32717" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-32717" class="demo-tip-darkgray" title="Analogue Spotlight" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-32717" src="https://vepimg.b8cdn.com/uploads/banners/booth/1599644241-109937241-5f58a2518dd7b.png" =""="" alt="Analogue Spotlight"> </a> </div></td>
<td align="center" class="leicester-booth" id="SmallBooth-TD-30024"><div onclick="showLargeBooth('LargeViewWrapper-30024');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-30024" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="ARTIBO LAB" href="javascript:;" onclick="showBooth('LargeViewWrapper-30024');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1598865792blob1598865792" =""="" alt="ARTIBO LAB" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-30024" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-30024" class="demo-tip-darkgray" title="ARTIBO LAB" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-30024" src="https://vepimg.b8cdn.com/uploads/banners/booth/1600344762-601682306-5f6352ba213a7.png" =""="" alt="ARTIBO LAB"> </a> </div></td>
</tr>
</tbody>
</table>
<div class="thumbs-logo-container" id="BeforeBoothThumbs-1">
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Analogue Spotlight" onclick="showBooth('LargeViewWrapper-32717')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599644313blob1599644313" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="ARTIBO LAB" onclick="showBooth('LargeViewWrapper-30024')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598865792blob1598865792" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Paterson Photographic & Benbo" onclick="showBooth('LargeViewWrapper-30122')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599217815blob1599217815" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="CEWE " onclick="showBooth('LargeViewWrapper-29958')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599221554blob1599221554" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Epson" onclick="showBooth('LargeViewWrapper-29967')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1597222558blob1597222558" =""="" alt="Logo"> </a> </div>
</div>
</div>
</div>
</div>
<div class="content">
<div class="bg" id="BoothsAndThumbContainer-2">
<!--div class="person-1"></div-->
<!-- Progace bar start here-->
<div class="find-job-bayt-logo">
<div class="video"> <a class="Top-Videos-List-Tv" href="javascript:;" id="TopBanner-Video-2"></a> </div>
</div>
<table id="MainBoothTable-2" cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr id="BeforeBooths-2">
<td align="center" class="leicester-booth" id="SmallBooth-TD-30122"><div onclick="showLargeBooth('LargeViewWrapper-30122');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-30122" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="Paterson Photographic & Benbo" href="javascript:;" onclick="showBooth('LargeViewWrapper-30122');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1599217815blob1599217815" =""="" alt="Paterson Photographic & Benbo" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-30122" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-30122" class="demo-tip-darkgray" title="Paterson Photographic & Benbo" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-30122" src="https://vepimg.b8cdn.com/uploads/banners/booth/1600426364-731749949-5f64917cc2f91.png" =""="" alt="Paterson Photographic & Benbo"> </a> </div></td>
<td align="center" class="leicester-booth" id="SmallBooth-TD-29958"><div onclick="showLargeBooth('LargeViewWrapper-29958');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-29958" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="CEWE " href="javascript:;" onclick="showBooth('LargeViewWrapper-29958');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1599221554blob1599221554" =""="" alt="CEWE " style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-29958" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-29958" class="demo-tip-darkgray" title="CEWE " href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-29958" src="https://vepimg.b8cdn.com/uploads/banners/booth/1600590571-812646239-5f6712ebaf6ce.png" =""="" alt="CEWE "> </a> </div></td>
</tr>
</tbody>
</table>
<div class="thumbs-logo-container" id="BeforeBoothThumbs-2">
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="nPhoto" onclick="showBooth('LargeViewWrapper-29947')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599486700blob1599486700" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Fotospeed" onclick="showBooth('LargeViewWrapper-31726')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598266911blob1598266911" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="GraphiStudio" onclick="showBooth('LargeViewWrapper-43554')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1597760966blob1597760966" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Hahnemühle" onclick="showBooth('LargeViewWrapper-29981')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599641720blob1599641720" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="PhotoXport" onclick="showBooth('LargeViewWrapper-43565')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1597776760blob1597776760" =""="" alt="Logo"> </a> </div>
</div>
</div>
</div>
</div>
<div class="content">
<div class="bg" id="BoothsAndThumbContainer-3">
<!--div class="person-1"></div-->
<!-- Progace bar start here-->
<div class="find-job-bayt-logo">
<div class="video"> <a class="Top-Videos-List-Tv" href="javascript:;" id="TopBanner-Video-3"></a> </div>
</div>
<table id="MainBoothTable-3" cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr id="BeforeBooths-3">
<td align="center" class="leicester-booth" id="SmallBooth-TD-29967"><div onclick="showLargeBooth('LargeViewWrapper-29967');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-29967" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="Epson" href="javascript:;" onclick="showBooth('LargeViewWrapper-29967');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1597222558blob1597222558" =""="" alt="Epson" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-29967" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-29967" class="demo-tip-darkgray" title="Epson" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-29967" src="https://vepimg.b8cdn.com/uploads/banners/booth/1599227021-164622623-5f52448d5e06a.png" =""="" alt="Epson"> </a> </div></td>
<td align="center" class="leicester-booth" id="SmallBooth-TD-29947"><div onclick="showLargeBooth('LargeViewWrapper-29947');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-29947" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="nPhoto" href="javascript:;" onclick="showBooth('LargeViewWrapper-29947');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1599486700blob1599486700" =""="" alt="nPhoto" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-29947" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-29947" class="demo-tip-darkgray" title="nPhoto" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-29947" src="https://vepimg.b8cdn.com/uploads/banners/booth/1599806807-625875191-5f5b1d57e0200.png" =""="" alt="nPhoto"> </a> </div></td>
</tr>
</tbody>
</table>
<div class="thumbs-logo-container" id="BeforeBoothThumbs-3">
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Innova Art and Fine Art Foto" onclick="showBooth('LargeViewWrapper-35108')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598533444blob1598533444" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="SIM Imaging & SIM Lab" onclick="showBooth('LargeViewWrapper-31717')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1595844460blob1595844460" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Digitalab" onclick="showBooth('LargeViewWrapper-31715')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1597782367blob1597782367" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Dunns Imaging Group Ltd." onclick="showBooth('LargeViewWrapper-29966')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598629595blob1598629595" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Sood Studios" onclick="showBooth('LargeViewWrapper-32708')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598690930blob1598690930" =""="" alt="Logo"> </a> </div>
</div>
</div>
</div>
</div>
<div class="content">
<div class="bg" id="BoothsAndThumbContainer-4">
<!--div class="person-1"></div-->
<!-- Progace bar start here-->
<div class="find-job-bayt-logo">
<div class="video"> <a class="Top-Videos-List-Tv" href="javascript:;" id="TopBanner-Video-4"></a> </div>
</div>
<table id="MainBoothTable-4" cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr id="BeforeBooths-4">
<td align="center" class="leicester-booth" id="SmallBooth-TD-31726"><div onclick="showLargeBooth('LargeViewWrapper-31726');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-31726" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="Fotospeed" href="javascript:;" onclick="showBooth('LargeViewWrapper-31726');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1598266911blob1598266911" =""="" alt="Fotospeed" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-31726" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-31726" class="demo-tip-darkgray" title="Fotospeed" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-31726" src="https://vepimg.b8cdn.com/uploads/banners/booth/1600179626-710935060-5f60cdaaa88cc.png" =""="" alt="Fotospeed"> </a> </div></td>
<td align="center" class="leicester-booth" id="SmallBooth-TD-43554"><div onclick="showLargeBooth('LargeViewWrapper-43554');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-43554" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="GraphiStudio" href="javascript:;" onclick="showBooth('LargeViewWrapper-43554');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1597760966blob1597760966" =""="" alt="GraphiStudio" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-43554" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-43554" class="demo-tip-darkgray" title="GraphiStudio" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-43554" src="https://vepimg.b8cdn.com/uploads/banners/booth/1600684124-717558539-5f68805ca94e1.png" =""="" alt="GraphiStudio"> </a> </div></td>
</tr>
</tbody>
</table>
<div class="thumbs-logo-container" id="BeforeBoothThumbs-4">
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="PermaJet" onclick="showBooth('LargeViewWrapper-39646')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599056754blob1599056754" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="CanvasBay UK LTD" onclick="showBooth('LargeViewWrapper-29955')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599237577blob1599237577" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Folio Albums" onclick="showBooth('LargeViewWrapper-29970')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599741243blob1599741243" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Artpoint Albums" onclick="showBooth('LargeViewWrapper-33936')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599388750blob1599388750" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="plot-IT" onclick="showBooth('LargeViewWrapper-30031')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598786410blob1598786410" =""="" alt="Logo"> </a> </div>
</div>
</div>
</div>
</div>
<div class="content">
<div class="bg" id="BoothsAndThumbContainer-5">
<!--div class="person-1"></div-->
<!-- Progace bar start here-->
<div class="find-job-bayt-logo">
<div class="video"> <a class="Top-Videos-List-Tv" href="javascript:;" id="TopBanner-Video-5"></a> </div>
</div>
<table id="MainBoothTable-5" cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr id="BeforeBooths-5">
<td align="center" class="leicester-booth" id="SmallBooth-TD-29981"><div onclick="showLargeBooth('LargeViewWrapper-29981');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-29981" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="Hahnemühle" href="javascript:;" onclick="showBooth('LargeViewWrapper-29981');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1599641720blob1599641720" =""="" alt="Hahnemühle" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-29981" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-29981" class="demo-tip-darkgray" title="Hahnemühle" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-29981" src="https://vepimg.b8cdn.com/uploads/banners/booth/1599745499-370555215-5f5a2ddb1ffbe.png" =""="" alt="Hahnemühle"> </a> </div></td>
<td align="center" class="leicester-booth" id="SmallBooth-TD-43565"><div onclick="showLargeBooth('LargeViewWrapper-43565');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-43565" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="PhotoXport" href="javascript:;" onclick="showBooth('LargeViewWrapper-43565');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1597776760blob1597776760" =""="" alt="PhotoXport" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-43565" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-43565" class="demo-tip-darkgray" title="PhotoXport" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-43565" src="https://vepimg.b8cdn.com/uploads/banners/booth/1599122021-846720269-5f50aa6561fcb.png" =""="" alt="PhotoXport"> </a> </div></td>
</tr>
</tbody>
</table>
<div class="thumbs-logo-container" id="BeforeBoothThumbs-5">
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Colorworld Imaging" onclick="showBooth('LargeViewWrapper-29962')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1597291106blob1597291106" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Plastic Sandwich" onclick="showBooth('LargeViewWrapper-39637')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598009308blob1598009308" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Pro Print Solutions" onclick="showBooth('LargeViewWrapper-30032')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1595864268blob1595864268" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Frames for Photographers" onclick="showBooth('LargeViewWrapper-29974')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599128024blob1599128024" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Stanford Marsh" onclick="showBooth('LargeViewWrapper-30037')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598790913blob1598790913" =""="" alt="Logo"> </a> </div>
</div>
</div>
</div>
</div>
<div class="content">
<div class="bg" id="BoothsAndThumbContainer-6">
<!--div class="person-1"></div-->
<!-- Progace bar start here-->
<div class="find-job-bayt-logo">
<div class="video"> <a class="Top-Videos-List-Tv" href="javascript:;" id="TopBanner-Video-6"></a> </div>
</div>
<table id="MainBoothTable-6" cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr id="BeforeBooths-6">
<td align="center" class="leicester-booth" id="SmallBooth-TD-35108"><div onclick="showLargeBooth('LargeViewWrapper-35108');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-35108" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="Innova Art and Fine Art Foto" href="javascript:;" onclick="showBooth('LargeViewWrapper-35108');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1598533444blob1598533444" =""="" alt="Innova Art and Fine Art Foto" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-35108" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-35108" class="demo-tip-darkgray" title="Innova Art and Fine Art Foto" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-35108" src="https://vepimg.b8cdn.com/uploads/banners/booth/1600761060-71980841-5f69ace4b075b.png" =""="" alt="Innova Art and Fine Art Foto"> </a> </div></td>
<td align="center" class="leicester-booth" id="SmallBooth-TD-31717"><div onclick="showLargeBooth('LargeViewWrapper-31717');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-31717" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="SIM Imaging & SIM Lab" href="javascript:;" onclick="showBooth('LargeViewWrapper-31717');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1595844460blob1595844460" =""="" alt="SIM Imaging & SIM Lab" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-31717" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-31717" class="demo-tip-darkgray" title="SIM Imaging & SIM Lab" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-31717" src="https://vepimg.b8cdn.com/uploads/banners/booth/1599240102-376721543-5f5277a643f81.png" =""="" alt="SIM Imaging & SIM Lab"> </a> </div></td>
</tr>
</tbody>
</table>
<div class="thumbs-logo-container" id="BeforeBoothThumbs-6">
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Wedprint Pro" onclick="showBooth('LargeViewWrapper-30046')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599637607blob1599637607" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Analogue Spotlight" onclick="showBooth('LargeViewWrapper-32717')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599644313blob1599644313" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="ARTIBO LAB" onclick="showBooth('LargeViewWrapper-30024')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598865792blob1598865792" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Paterson Photographic & Benbo" onclick="showBooth('LargeViewWrapper-30122')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599217815blob1599217815" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="CEWE " onclick="showBooth('LargeViewWrapper-29958')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599221554blob1599221554" =""="" alt="Logo"> </a> </div>
</div>
</div>
</div>
</div>
<div class="content">
<div class="bg" id="BoothsAndThumbContainer-7">
<!--div class="person-1"></div-->
<!-- Progace bar start here-->
<div class="find-job-bayt-logo">
<div class="video"> <a class="Top-Videos-List-Tv" href="javascript:;" id="TopBanner-Video-7"></a> </div>
</div>
<table id="MainBoothTable-7" cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr id="BeforeBooths-7">
<td align="center" class="leicester-booth" id="SmallBooth-TD-31715"><div onclick="showLargeBooth('LargeViewWrapper-31715');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-31715" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="Digitalab" href="javascript:;" onclick="showBooth('LargeViewWrapper-31715');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1597782367blob1597782367" =""="" alt="Digitalab" style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-31715" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-31715" class="demo-tip-darkgray" title="Digitalab" href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-31715" src="https://vepimg.b8cdn.com/uploads/banners/booth/1597850118-83942230-5f3d42065bcb2.png" =""="" alt="Digitalab"> </a> </div></td>
<td align="center" class="leicester-booth" id="SmallBooth-TD-29966"><div onclick="showLargeBooth('LargeViewWrapper-29966');" id="Small-Booth-Main-Div-Area-LargeViewWrapper-29966" class="SmallBoothContainer">
<div class="leicester-booth-top-logo"> <a class="demo-tip-darkgray" title="Dunns Imaging Group Ltd." href="javascript:;" onclick="showBooth('LargeViewWrapper-29966');"> <img src="https://vepimg.b8cdn.com/uploads/vjfnew/1329/content/docs/1598629595blob1598629595" =""="" alt="Dunns Imaging Group Ltd." style=""> </a> </div>
<div id="Small-Booth-Banners-Parent-Div-LargeViewWrapper-29966" style="display:none;"></div>
<a id="Small-Booth-Image-LargeViewWrapper-29966" class="demo-tip-darkgray" title="Dunns Imaging Group Ltd." href="javascript:;"> <img id="SmallBooth-LargeViewWrapper-29966" src="https://vepimg.b8cdn.com/uploads/banners/booth/1599210396-837471699-5f52039cd3991.png" =""="" alt="Dunns Imaging Group Ltd."> </a> </div></td>
</tr>
</tbody>
</table>
<div class="thumbs-logo-container" id="BeforeBoothThumbs-7">
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Epson" onclick="showBooth('LargeViewWrapper-29967')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1597222558blob1597222558" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="nPhoto" onclick="showBooth('LargeViewWrapper-29947')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599486700blob1599486700" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Fotospeed" onclick="showBooth('LargeViewWrapper-31726')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1598266911blob1598266911" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="GraphiStudio" onclick="showBooth('LargeViewWrapper-43554')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1597760966blob1597760966" =""="" alt="Logo"> </a> </div>
</div>
<div class="thumbs">
<div class="logo-container"> <a class="demo-tip-darkgray" title="Hahnemühle" onclick="showBooth('LargeViewWrapper-29981')" href="javascript:;"> <img class="Railing-Banners-Ashfaq" data="ashfaq" src="https://vepimg.b8cdn.com//uploads/vjfnew/1329/content/docs/1599641720blob1599641720" =""="" alt="Logo"> </a> </div>
</div>
</div>
</div>
</div>
<div class="content">