-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
5850 lines (5358 loc) · 778 KB
/
help.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
<div style=""></div>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<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="https://vepcss.b8cdn.com/test-drive/Styles/style.css?v=1.14" rel="stylesheet" type="text/css" />
<link id="Style-Banner-Gallery" href="https://vepcss.b8cdn.com/test-drive/Styles/banner-gallery.css?v=1.14" rel="stylesheet" type="text/css" />
<link id="Style-Juqery-Ui" href="https://vepcss.b8cdn.com/test-drive/Styles/jquery-ui-1.9.0.custom.css?v=1.14" 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=1620139211" />
<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'>
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/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=1620139211">
<script src="https://vepjs.b8cdn.com/Scripts/bootstrap.fd.js?v=1620139211"></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>
</head>
<body id="lang-en" class="current-usertype-8">
<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">
<tr id="BeforeBooths"></tr>
</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: 17px;">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">
<div class="pre-but"> <a href="javascript:;" id="Prev-Booth-Anchor" onClick="showLargeBooth('Prev-Booth-Id');" >
<div class="PrevFloorBtn AshToolTip" id="PrevBoothBtnText">Previous Booth</div>
</a> </div>
<div class="mob-booth-menu all-buts-container">
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="center" valign="middle"><table border="0" cellpadding="0" cellspacing="0" align="center">
<tr id="large-Mob-Booths-Top-Menus-"></tr>
</table></td>
</tr>
</table>
</div>
<div class="all-buts-container">
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="center" valign="middle"><table border="0" cellpadding="0" cellspacing="0" align="center">
<tr id="Booths-Top-Menus-"></tr>
</table></td>
</tr>
</table>
</div>
<div class="next-but"> <a href="javascript:;" id="Next-Booth-Anchor" onClick="showLargeBooth('Next-Booth-Id');">
<div class="NextFloorBtn AshToolTip" id="NextBoothBtnText">Next Booth</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">
<ul>
<li><a href="#tabs-1">COMPANY</a></li>
<li id="Uni-Vid-Li-LargeViewWrapperTmp"><a href="#tabs-2">VIDEOS</a></li>
<li id="Uni-Docs-Li-LargeViewWrapperTmp"><a href="#tabs-3">DOCUMENTS</a></li>
<li id="Uni-Job-Li-LargeViewWrapperTmp"><a href="#tabs-4">JOB VACANCIES</a></li>
</ul>
<div id="tabs-1"> <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">
<div class="tab-video">
<ul id="Video-LargeBooth-Inside-">
</ul>
</div>
</div>
<div id="tabs-3">
<div class="tab-video">
<ul id="Document-LargeBooth-Inside-">
</ul>
</div>
</div>
<div id="tabs-4">
<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">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.12119603157043</div>
<!-- body start here -->
<div class="wrapper hall-wrap" >
<div class="vjf-header" role="Header">
<div class="wrap-header">
<div class="col-md-3"> <a href="Index.html"><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">
<div class="progace-bar" id="SecondPageLoader" style="display:none;width:902px; height:418px; margin:10px 0px 0px 11px; background: #B4B0B0;border:0px solid #111111;top: 0px;opacity: 0.7;">
<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" id="PleaseWait" style="color:#000000;">Please Wait...</div>
</div>
<div id="hallview">
<div class="body-container">
<!-- Progace bar start here-->
<div class="progace-bar" id="pbBooth" style="display: none;z-index:50000;">
<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">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">
</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">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">
</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">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="display:none;"> <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="display:none;"> <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: hidden;height:438px;;">
<div id="banner_container2" class="banner_container" style="height:438px;;">
<div class="thumbScroller" style="height:438px;;">
<div class="container" id="DynamicBoothsContainerParent" style="height:438px;;">
<ul id="DynamicBoothsContainer">
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="bighrader-bot-bg" style="display:none;">
<div class="pre-but"> <a href="javascript:;" id="LoadPrevFloor" GetFloor="">
<div class="PrevFloorBtn AshToolTip" id="PrevFloorBtnText">Previous</div>
</a> </div>
<div class="next-but"> <a href="javascript:;" id="LoadNextFloor" GetFloor="">
<div class="NextFloorBtn AshToolTip" id="NextFloorBtnText"> Next</div>
</a> </div>
</div>
<!-- Big here coles here -->
<div class="clear"></div>
</div>
<marquee scrollamount="5" behavior="scroll" direction="left">
<span style="display: inline-block; margin-right: 100px; cursor: pointer" onClick="showWebinarScreen(true);">Smart Simple Marketing’s LIVE Presentation will be starting at 3pm PT Today! Stop by their booth to chat with their representatives or see what other materials and/or bonuses they may have for you.</span>
</marquee>
<div class="home-container" id="osponsor-section">
<div class="left">
<div class="company-index-top AshToolTip">
<h1 id="CompanyIndexHeading">Companies Index</h1>
</div>
<div class="company-index-bot">
<ul class="navlist" id="CompanyIndex">
</ul>
</div>
</div>
<div id="category-exhibitor-index" class="left" style="display: none;"> </div>
<div class="right" id="WidgetRightBox"> </div>
<div id="WidgetMiddleBox" class="right" style="margin-right:10px;"> </div>
<div class="clear"></div>
</div>
</div>
<link href='https://vepcss.b8cdn.com/css/font-awesome.min.css' rel='stylesheet' type='text/css' />
<script type="text/javascript" src="https://vepjs.b8cdn.com/js/webinars.js?v=1.91"></script>
<script type="text/javascript">
var makeQaChatPublic = '1';
var moderateQuestions = '';
</script>
<style type="text/css">
.webinar-list .presenter img, .webinar-list .presenter span strong {font-weight: 400}
.webinar-list .presenter div p {font-size: 13px; font-family: 'Arial', sans-serif}
.webinar-list .docrow h3 {line-height: 20px; height: auto}
.topics-tabs {width: 100%}
.borderbox {box-sizing: border-box !important}
.topics-tabs a.btn {margin-top: 10px; color: #fff}
.timer-down {padding-top: 8px; padding-bottom: 0}
.timer-down ul {padding-left: 0; list-style: none}
.timer-down li {background: #fff; border-radius: 5px; width: auto; padding: 0; margin-right: 5px; display: inline-block}
.timer-down p {background: none !important; color: #333333; height: auto; line-height: 1em; font-weight: bold; font-size: 14px; margin-bottom: 0}
.timer-down span {margin-top: 0; margin-left: 0; color: #333333; left:0; padding-top: 0; font-size: 12px}
.seconds-timer div {display: inline-block}
.webinar-list .video-row h3, .webinar-list .video-row p, .webinar-list .presenter {margin-left: 0}
@media (min-width: 768px) {
.pad-l0 {padding-left: 0 !important}
}
</style>
<div class="webinars-qa-list extra-section" style="display: none">
<h1 class="underline">Webinar Q&A</h1>
<div class="qa-list"></div>
</div>
<div class="webinars-tabs extra-section" id="topics-tab" style="display: none">
<div class="wda-tabs">
<div class="wda-tabs-inner row">
<div class="col-sm-12 borderbox">
<ul class="nav nav-tabs nav-tabs-webinar">
<li class="active" id="webinar-group-3509"><a data-toggle="tab" href="#webinar-list-3509">Out & About</a></li>
<li id="webinar-group-3515"><a data-toggle="tab" href="#webinar-list-3515">Sony Alpha Academy</a></li>
<li id="webinar-group-3511"><a data-toggle="tab" href="#webinar-list-3511">Video Skills</a></li>
<li id="webinar-group-3548"><a data-toggle="tab" href="#webinar-list-3548">Canon Inspirational</a></li>
<li id="webinar-group-3514"><a data-toggle="tab" href="#webinar-list-3514">Canon Educational</a></li>
<li id="webinar-group-3508"><a data-toggle="tab" href="#webinar-list-3508">Create & Motivate</a></li>
<li id="webinar-group-3507"><a data-toggle="tab" href="#webinar-list-3507">Connect</a></li>
<li id="webinar-group-3512"><a data-toggle="tab" href="#webinar-list-3512">Editing</a></li>
<li id="webinar-group-3513"><a data-toggle="tab" href="#webinar-list-3513">Nikon School</a></li>
<li id="webinar-group-3516"><a data-toggle="tab" href="#webinar-list-3516">Burst Mode Hub</a></li>
<li id="webinar-group-3510"><a data-toggle="tab" href="#webinar-list-3510">Photo Skills</a></li>
</ul>
<div class="tab-content webinar-tab-content">
<div id="webinar-list-3509" class="tab-pane fade in active">
<div class="webinar-list">
<div class="docfilter form-group">
<input type="text" class="form-control" id="searchWebinar" placeholder="" name="searchDoc" style="box-sizing: border-box">
</div>
<div style="line-height: 2px; padding: 1px 0" class="action-box"></div>
<div class="docrows">
<h2 class="webinar-section-head">September 20<sup>th</sup></h2>
<div class="docrow" id="webinar-row-39053">
<div class="col-sm-8 video-row">
<h3>How to find locations for fashion and portrait photography</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/2047dccc-cc64-11ea-916f06dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Jay McLaughlin</a></strong> </span>
<div style="display: none">
<p>Based in East London, British fashion and portrait photographer Jay McLaughlin has always had a keen interest in photography. Initially choosing to study graphic design, his interest in photography dominated and as a result heavily influenced the direction of his design portfolio. Eventually pursuing photography outright, within six months he had secured his first magazine cover and within a year he was shooting for national magazines.</p>
<p>His work has since been published internationally and has worked with clients such as Harper's Bazaar, Topshop, Olympus, and Vogue. As well as being a successful photographer, McLaughlin has also conducted photographic seminars and workshops, and been on the judging panels for the Hasselblad Masters and Scottish Fashion Awards.</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39053" data-title="How to find locations for fashion and portrait photography" data-url="https://www.youtube.com/embed/PqHot9AJuus?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>Fashion photographer Jay McLaughlin is always scouting for great locations for his shoots. Join him to find out what makes for the ideal backdrop.</p>
<p>Brought to you by</p>
<p><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/exhibitor-logos/Olympus.png" alt="" width="127" height="33" /></p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39049">
<div class="col-sm-8 video-row">
<h3>In motion with Jim Cossey and Fusion Extreme</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/2047e089-cc64-11ea-916f06dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Jim Cossey</a></strong> </span>
<div style="display: none">
<p>When Jim was 15, he had his first introduction to photography after receiving a camera for his birthday. Since that day, he hasn't been able to put a camera down. His love for landscapes takes him all over the UK and Europe, which has made him appreciate the beauty of our surroundings. Jim spent 3 years working in the French Alps which is where his landscape photography really developed.</p>
<p>Since moving back to Bristol, he has received several awards for his photography and works closely with providing imagery for local tourism boards. Until recently, he has started shooting weddings all over the UK and has shot his first celebrity wedding this summer.</p>
<p>Jim is a Panasonic Lumix Ambassador.</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39049" data-title="In motion with Jim Cossey and Fusion Extreme" data-url="https://www.youtube.com/embed/17whBy5JHxQ?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>Jim works with Fusion Extreme to create awesome action shots with a selection of athletes - and show you how to create your own.</p>
<p> </p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39054">
<div class="col-sm-8 video-row">
<h3>The art of backlight</h3>
<p></p>
<div class="presenter"> <img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/Andy%20Parkinson%20.jpg" /> <span> <strong>Andy Parkinson</strong> </span>
<div style="display: none"></div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="ONDEMAND" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39054" data-title="The art of backlight" data-url="https://www.youtube.com/embed/fT6o8lXyBFw?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>Learn to master this incredibly effective yet challenging technique. </p>
<p>Brought to you by </p>
<p><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/exhibitor-logos/Nikon.jpg" alt="" width="49" height="49" /></p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39056">
<div class="col-sm-8 video-row">
<h3>Mobile and solutions journalism: Shooting the stories</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/2047c072-cc64-11ea-916f06dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Dougal Shaw</a></strong> </span>
<div style="display: none">
<p>Dougal Shaw is the BBC's only Video Innovation Journalist, working within the BBC News Business Unit. As well as creating original digital reports himself, he coordinates digital content, including videos optimised for platforms like Facebook, Twitter and LinkedIn. He has filmed on his mobile phone for the past 5 years, with his reports appearing both online and on BBC News television outlets like Breakfast, bulletins and BBC London.</p>
<p>He has a special interest in Solutions Journalism, having worked on the BBC's dedicated strand People Fixing the World, creating several viral hits. He continues to cover Solutions Journalism stories from a business perspective. Dougal joined BBC News in 2003 and worked for four years on the Hardtalk programme (and helped to set up its arts and culture strand Hardtalk Extra with Gavin Esler).</p>
<p>Since then he has worked at the heart of the digital newsroom at the BBC. He was chosen as a founding member of the Video Innovation Lab which created the BBC's first video offerings for Instagram and Snapchat. He also helped to set up the successful strand BBC Trending. He has been filming his own stories for the past ten years, using primarily his mobile phone for the past five.</p>
<p>Two of his biggest original features that have proved viral hits are a report on the concept of Circular Runways for airports and another on Sweden's first recycling shopping mall (49m and 39m views on Facebook respectively).</p>
</div>
</div>
<br/>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/2047b227-cc64-11ea-916f06dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">David McClelland</a></strong> </span>
<div style="display: none">
<p>David McClelland is a broadcaster and journalist specialising in technology and consumer affairs. A familiar face untangling technology on TV, David is BBC Rip Off Britain's resident consumer champion, a reporter for BBC Right on the Money, an ITV Good Morning Britain sofa regular and presenter for Challenge TV's Planet of the Apps.</p>
<p>Alongside features about cameras and photography, David has written extensively about mobile journalism and how smartphones have helped to create new channels and opportunities for content creators. Regular bylines with Metro, Wired, CNET, TechRadar, and International Business Times. David has presented The Photography Show's pop-up TV channel since 2014, interviewing Super Stage speakers and getting hands-on with the latest cameras and kit at the show. David tweets @DavidMcClelland, and Instagrams @DavidMcClellandTV.</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="ONDEMAND" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39056" data-title="Mobile and solutions journalism: Shooting the stories" data-url="https://www.youtube.com/embed/6JXVM62wqrc?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>In this session, Dougal chats to David McClelland about the kind of equipment and technologies he uses and the many fascinating stories he's covered.</p>
<p> </p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39058">
<div class="col-sm-8 video-row">
<h3>Be unique: Seeing things that others don't</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/B4D10DFF-E464-386E-E25499BDBB1357B8-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Levanterman</a></strong> </span>
<div style="display: none">
<div class="m-speaker-entry__item__description">Nige is a professional urban, landscape and travel photographer as well as a freelance software consultant. In 2014 he bought his first DSLR camera and began to develop his knowledge of long exposure photography and video editing. This is where Nige found his distinct style of photography. Since then Nige’s social media presence has grown rapidly with mobile, drone, DSLR, phone and time-lapse photography. He is an official Edelkrone ambassador and regularly works with large brands, speaks at photography clubs and hosts photography workshops.</div>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39058" data-title="Be unique: Seeing things that others don't" data-url="https://www.youtube.com/embed/Svo1zAN72hw?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>In this session, @levanterman discusses how he uses architecture and the lines of buildings and trees to create really good compositions. </p>
<p> </p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39060">
<div class="col-sm-8 video-row">
<h3>Down the garden path - back garden wildlife and nature photography</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/20481a39-cc64-11ea-916f06dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Victoria Hillman</a></strong> </span>
<div style="display: none">
<p>Victoria Hillman is a wildlife researcher and photographer, who studied Zoology with Marine Zoology before going on to study for an MSc in Wildlife Biology and Conservation. Nature has been a passion from an early age with photography following closely behind as a way to show people what she was seeing and studying.</p>
<p>Over the years she has developed both her scientific and photographic skills specialising in macro photography championing the smaller species we have around us and now brings these skills and creative to wider wildlife photography.Victoria is a Manfrotto Ambassador, BPOTY judge, judged for BWPA in 2018 and 2019, is a guide for NaturesLens and has contributed stills, video and articles to magazines, books and TV series including National Geographic and The BBC. Victoria published her first book Forgotten Little Creatures celebrating local wildlife through bringing together photography with scientific and historical facts and is now continuing the project.</p>
<p>Although based in Somerset, Victoria gives talks about her work and runs both group workshops and 1-2-1 tuition across the country, helping people to make the most of their subjects and equipment whilst getting to grips with tricky habitats and thinking about the importance of being responsible when photographing nature.</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="ONDEMAND" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39060" data-title="Down the garden path - back garden wildlife and nature photography" data-url="https://www.youtube.com/embed/pH38K-oChPI?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>This talk will look at just some of the possibilities when it comes to photographing nature and wildlife in your garden.</p>
<p> </p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39062">
<div class="col-sm-8 video-row">
<h3>Lighting the landscape</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/2047efbd-cc64-11ea-916f06dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Marcus McAdam</a></strong> </span>
<div style="display: none">
<p>Marcus McAdam is an award winning photographer specialising in travel, landscape and commercial photography. Having lived and worked in places such as China, Rwanda, India and Italy he is now based on the Isle of Skye where he runs Skye Photo Academy and Worldwide Explorers. Shooting both digitally and on film, Marcus is also a regular contributor to Photography Online - the new monthly YouTube programme</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39062" data-title="Lighting the landscape" data-url="https://www.youtube.com/embed/Mr7cU0zXE4A?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>Marcus McAdam looks at how to use available light effectively in a landscape environment to inject drama, atmosphere and impact into your images.</p>
<p>Brought to you by </p>
<p><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/exhibitor-logos/Skye.png" alt="" width="117" height="49" /><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/exhibitor-logos/Kase.png" alt="" width="74" height="30" /></p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39064">
<div class="col-sm-8 video-row">
<h3>Approaching wildlife photography trips like a pro</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/Tom%20Mason.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Tom Mason</a></strong> </span>
<div style="display: none">
<p dir="ltr">Tom Mason is a 26 year old professional wildlife and nature photographer from the UK. Having worked on numerous assignments from the Amazon to the Falklands. He is a regular contributor to numerous publications such as BBC Wildlife Magazine, Practical Photography and numerous other titles. A well known blogger for Wex Photographic, Tom also runs his own YouTube channel following his life behind the lens, sharing a host of tips and tricks for improving your wildlife photography. </p>
<p dir="ltr">A regular lecturer, he has spoken on behalf of many brands such as Nikon and Manfrotto at events across the country, as well as for numerous organisations and educational institutions. His images have been awarded internationally, recently gaining a Highly commended in the National Geographic Por el Planeta prize. </p>
<p dir="ltr">Tom has a huge passion for the environment and sharing the stories of the natural world through photography, hoping to positively engage people in order to help protect wildlife for the future. </p>
<p dir="ltr">You can see more from Tom work on his website <a href="http://www.tommasonphoto.com/">www.tommasonphoto.com</a> or check out his YouTube channel at <a href="http://www.youtube.com/tommasonphoto">www.youtube.com/tommasonphoto</a> and follow him on Twitter and Instagram @TomMasonPhoto</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39064" data-title="Approaching wildlife photography trips like a pro" data-url="https://www.youtube.com/embed/yq-Skkdh9mg?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>Join professional wildlife photographer Tom Mason for a talk looking at how to develop your images whilst travelling. </p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39066">
<div class="col-sm-8 video-row">
<h3>How to take better travel photos</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/Laurence%20Norah.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Laurence Norah</a></strong> </span>
<div style="display: none">
<p>Laurence is a full time professional travel photographer and blogger, and owner of the website <a href="https://www.findingtheuniverse.com/">Finding the Universe</a>. Laurence has been taking pictures for almost thirty years, and has had his work appear on the National Geographic homepage, as well as the BBC, CNN, and multiple other publications. Laurence teaches photography to students around the world, both in person and via his online photography course. Laurence is happiest watching a sunset over a spectacular landscape with his wife Jessica, camera on tripod!</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39066" data-title="How to take better travel photos" data-url="https://www.youtube.com/embed/PdRlr6hvE70?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>In this session, Laurence Norah will provide tips for taking better travel photos.</p>
<p>Brought to you by </p>
<p><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/exhibitor-logos/Vanguard.png" alt="" width="113" height="43" /></p>
<p> </p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39069">
<div class="col-sm-8 video-row">
<h3>From golden hour to blue hour: Working with natural light in landscape photography</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/Nigel%20Forster.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Nigel Forster</a></strong> </span>
<div style="display: none">
<p dir="ltr">Nigel Forster is based in the Brecon Beacons in Mid Wales and has run his business Creative Photography Experience since 2009. He is an experienced tutor of location based photography to groups and individuals and runs regular workshops year round within Wales and throughout the UK. He is also a commercial photographer specialising in Tourism, Events and Architectural photography.</p>
<p dir="ltr">He has always had a passion for the outdoors; the mountains in particular, travel and for landscape photography. This passion is reflected in his style of photography.</p>
<p dir="ltr">The strength of Nigel’s work is in simple composition, natural light control and in creating unique imagery and he encourages all his clients to develop the way they think about their outdoor photography.</p>
<p dir="ltr">He is a Master Photographer for The Photographer Academy and hosts their online training videos.</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39069" data-title="From golden hour to blue hour: Working with natural light in landscape photography" data-url="https://www.youtube.com/embed/QyRjhh5cW5g?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>Learn how your use of natural light can shape your images and assist in developing your photographic style.</p>
<p>Brought to you by</p>
<p><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/exhibitor-logos/FD14C66B-5056-B71D-5E71020B095E9B71-logo.jpg.png" alt="" width="111" height="72" /> </p>
</div>
<div class="clearfix"></div>
</div>
<h2 class="webinar-section-head">September 21<sup>st</sup></h2>
<div class="docrow" id="webinar-row-39086">
<div class="col-sm-8 video-row">
<h3>Creative location portraits using strobes and ambient light</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/20479c18-cc64-11ea-916f06dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Ben Bentley</a></strong> </span>
<div style="display: none">
<p>Ben Bentley is an internationally published photographer based in the UK, shooting for publications, record labels and commercial clients with worldwide reach.Currently into his sixth year as a contributing photographer at the NME, Ben's work has also been seen in Rolling Stone, VICE Magazine, Clash, Q, KERRANG!, The Guardian plus many more print and online publications around the world.</p>
<p>Commercial clients include Universal Music Group, Festival Republic, Virgin/EMI, Live Nation, Warner Music Group, Puma, Block9, Longines, Diesel, Topshop, Topman, BBC Music, Harvey Goldsmith Productions, t-i media, The foundry, Soho House and more. In January 2017, Ben was announced as joining the ranks of Interfit Photographic's award winning roster of Creative Pros. </p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39086" data-title="Creative location portraits using strobes and ambient light" data-url="https://www.youtube.com/embed/YNGNtutQe7Q?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>Ben gives an insight into his on-location workflow and how he uses strobes to produce varying creative portrait set-ups in one location.</p>
<p>Brought to you by </p>
<p><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/exhibitor-logos/Interfit_logo.jpg" alt="" width="85" height="29" /></p>
<p> </p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39073">
<div class="col-sm-8 video-row">
<h3>10 ways to elevate your street photography</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/20479dfb-cc64-11ea-916f06dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Bryan Lloyd Duckett</a></strong> </span>
<div style="display: none">
<p>Brian Lloyd Duckett is a documentary and street photographer and he founded the London-based StreetSnappers organisation. He runs street photography workshops around the UK and in European cities such as Lisbon, Venice and Paris and is an Official Fujifilm X-Photographer. He works with small groups and also runs one-to-one workshops and mentoring programmes. Brian's two books, 'Mastering Street Photography' and '52 Assignments: Street Photography' have become best sellers. He also writes for travel and photography magazines and lectures at universities and camera clubs across the UK.</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39073" data-title="10 ways to elevate your street photography" data-url="https://www.youtube.com/embed/fHGFsaxTywY?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>Brian will help demolish your fear of shooting on the streets and cover the technical aspects of street photography - what gear to use and how to set up your camera.</p>
<p>Brought to you by </p>
<p><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/FujiFilm%20logo.jpg" alt="" width="89" height="48" /></p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39088">
<div class="col-sm-8 video-row">
<h3>How to fly a drone</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/84ae0dbc-bfcb-11ea-a48006dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Carys Kaiser</a></strong> </span>
<div style="display: none">
<p>Carys, aka The Drone Lass, comes from a TV production background, having done everything from sound recording, working as a camera assistant and camera operator, to self-shooting PD (producer director). She worked on science and historical films and on TV productions in the UK for over 17 years. In March 2015, she saw some footage online that made her realise that to move forward with her visual storytelling, she had to upskill and learn to fly a drone.</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39088" data-title="How to fly a drone" data-url="https://www.youtube.com/embed/dLSEv0ivpTQ?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<p>Carys offers a guide to flying a drone.</p>
<p> </p>
</div>
<div class="clearfix"></div>
</div>
<div class="docrow" id="webinar-row-39090">
<div class="col-sm-8 video-row">
<h3>In motion with Jim Cossey and Fusion Extreme</h3>
<p></p>
<div class="presenter"> <a href="javascript:;" class="bio-lnk"><img src="https://cdn.asp.events/CLIENT_Future_P_DE4B06E3_5056_B739_54BDCF002C5DE467/sites/Photography-Show-2020/media/libraries/speakers/2047e089-cc64-11ea-916f06dcb84e6686-profileimg.jpg" /></a> <span> <strong><a href="javascript:;" class="bio-lnk">Jim Cossey</a></strong> </span>
<div style="display: none">
<p>When Jim was 15, he had his first introduction to photography after receiving a camera for his birthday. Since that day, he hasn't been able to put a camera down. His love for landscapes takes him all over the UK and Europe, which has made him appreciate the beauty of our surroundings. Jim spent 3 years working in the French Alps which is where his landscape photography really developed.</p>
<p>Since moving back to Bristol, he has received several awards for his photography and works closely with providing imagery for local tourism boards. Until recently, he has started shooting weddings all over the UK and has shot his first celebrity wedding this summer.</p>
<p>Jim is a Panasonic Lumix Ambassador.</p>
</div>
</div>
<br/>
</div>
<div class="col-sm-4">
<div class="webinar-date-time-counter" style="color: green; "> </div>
<a href="javascript:;" data-webinar-type="PREC" class="track-btn-click btn btn-default play-webinar" data-qa="0" data-webinar-id="39090" data-title="In motion with Jim Cossey and Fusion Extreme" data-url="https://www.youtube.com/embed/y4quvhZ37V0?autoplay=1&rel=0&showinfo=0&modestbranding=1" data-replay=1>Play</a> </div>
<div class="clearfix"></div>
<div class="webinar-desc">
<div class="m-seminar-entry__item__description">Jim works with Fusion Extreme to create awesome action shots with a selection of athletes.</div>
<div class="m-seminar-entry__item__speakers"> </div>
</div>