You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

952 lines
44 KiB

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8" >
<link href='/images/favicon.ico' rel='icon' type='image/vnd.microsoft.icon'/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta id="ctl00_mtDescription" name="description" content="Welcome to EC&amp;O Venues - the best event, conference and exhibition venues in London are at Earls Court."></meta>
<meta id="ctl00_mtKeywords" name="keywords" content="conference venue london, event venue london, earls court, EC&amp;O venues, earls
court exhibition centre, ealrs court, olympai, conference venue, venue london, exhibitions in london, trade expos london, london events, eco, erls court, earls cort, conference space london, event space london,"></meta>
<meta name="verify-v1" content="5ad5LvnU/+URnMP/c3VvBs60SnW6BhF4aZ8EtiiNJ/o=" />
<title>Maps - EC&amp;O Venues | Event Venues in London | Conference centres in London | Exhibition halls in London</title>
<link href="/css/general_styles.css" rel="stylesheet" type="text/css" />
<link href="/css/styles_organising.css" rel="stylesheet" type="text/css" />
<link href="/css/styles_visiting.css" rel="stylesheet" type="text/css" />
<link href="/css/styles_event_detail.css" rel="stylesheet" type="text/css" />
<link href="/css/styles_enquiry_form.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="/css/print-basic.css" media="print" />
<!--[if (IE 6)|(IE 7)]>
<link href="/css/general_styles_ie.css" rel="stylesheet" type="text/css" />
<![endif]-->
<script type="text/javascript" src="/js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="/js/top_up-min.js"></script>
<script type="text/javascript" src="/js/jquery.pngFix.js"></script>
<script type="text/javascript" src="/js/cufon-yui.js"></script>
<script type="text/javascript" src="/js/VAG_Rounded_700.font.js"></script>
<script type="text/javascript" src="/js/ecando.js"></script>
<script type="text/javascript" src="/js/jquery.newsTicker1.2.1.js"></script>
<script type="text/javascript" src="/js/scrolltopcontrol.js"></script>
<!-- CSS & JS FOR THE MENU LEFT -->
<link href="/css/styles_menu-left.css" rel="stylesheet" type="text/css" />
<!-- <script type="text/javascript" src="/js/menu-left-style.js"></script> -->
<script type="text/javascript" src="/js/jquery.fontScaler.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".testscale").fontScaler({
target: "#div_bottom,.growFont,.txtEnquiryForm,.asterisk,.txtEnquiryForm2,#txtHeaderCopy,#txtDescription,.form-details"
});
});
</script>
<!-- FORM VALIDATION -->
<!-- adding libraries -->
<script type="text/javascript" src="/js/jquery.validate.pack.js"></script>
<script type="text/javascript" src="/js/jquery.form.js"></script>
<script type="text/javascript" src="/js/date.js"></script>
<script type="text/javascript" src="/js/jquery.cookie.js"></script>
<script type="text/javascript">
// New method to check the Select field
jQuery.validator.addMethod(
"selectNone",
function(value, element) {
if (element.value == "none")
{
return false;
}
else return true;
},
"Please select an option."
);
jQuery.validator.addMethod("UKDate", function(value, element) {
return Date.parseExact(value, "d/M/yyyy");
},
"Valid Date : dd/mm/yyyy"
);
</script>
<script type="text/javascript">
$(document).ready(function() {
$("#liveventsform").validate({
rules: {
typeevent: {
// Call to new method to check the Select field
selectNone: true
},
capacity: "required",
datefrom: {
required: true,
//dateISO: true
UKDate : true
},
dateto: {
required: true,
//dateISO: true
UKDate : true
},
nameevent: "required",
name: "required",
company: "required",
emailadd: {
required: true,
email: true
},
telephone: {
required: true,
number: true
},
heardaboutus: "required",
// FIELDS FOR CONTACT US FORM
firstname: "required",
lastname: "required",
telephone2: "number",
emailaddress: {
required: true,
email: true
}
},
messages: {
datefrom: {
dateISO: "Valid date:(yyyy/mm/dd)"
},
dateto: {
dateISO: "Valid date:(yyyy/mm/dd)"
}
}
});
$("#marketingform").validate({
rules: {
// FIELDS FOR PARKING FORM
first_name: "required",
last_name: "required",
email_address: {
required: true,
email: true
},
show_name: "required",
total_visitors: {
required: true,
number: true
},
total_web_visits: {
required: true,
number: true
},
total_eco_web_visits: {
required: true,
number: true
},
tickets_percentage: {
required: true,
number: true
},
marketing_budget: {
required: true,
number: true
}
},
messages: {
first_name: {
required: "Enter your first name."
},
last_name: {
required: "Enter your last name."
},
show_name: {
required: "Enter show name."
}
}
});
$("#parkingform").validate({
rules: {
// FIELDS FOR PARKING FORM
singlevehicles: "required",
card: "required",
term: "required"
},
messages: {
singlevehicles: {
required: "You must read, agree to and tick this box before you can book parking."
},
card: {
required: "You must read, agree to and tick this box before you can book parking."
},
term: {
required: "You must read, agree to and tick this box before you can book parking."
}
}
});
//});
/* start show/hide div other */
$("#typeevent").change(function(){
//alert('type of event is '+this.value);
if(this.value == 'Other (please specify)'){
//alert('hello other event');
$("#other").show();
}
else{
$("#other").hide();
}
});
/* end show div other*/
// wait for the DOM to be loaded
//$(document).ready(function() {
// bind 'myForm' and provide a simple callback function
$('#liveventsform').submit(function () {
$('#liveventsform').validate();
var validated = $('#liveventsform').valid();
//alert (validated);
if (validated == true) {
//alert("Thank you!");
//return false;
}
else {
//alert("NOT VALIDATED");
return false;
}
/*
var options = {
target: '#alert'
}
$('#liveventsform').ajaxSubmit(options);
*/
$('#alertpopup').fadeIn(500);
var options = {
async: false,
target: '#popuptext'
}
$('#liveventsform').ajaxSubmit(options);
$('div#popuptext').show();
// Now here we need to have our popup box in center of webpage
var popuptopmargin = ($('#alertpopup').height() + 10) / 2;
var popupleftmargin = ($('#alertpopup').width() + 10) / 2;
// Then using .css function style our popup box for center allignment
$('#alertpopup').css({
'margin-top' : -popuptopmargin,
'margin-left' : -popupleftmargin
});
return false;
});
$('#marketingform').submit(function () {
$('#marketingform').validate();
var validated = $('#marketingform').valid();
if (validated != true) {
return false;
}
$('#alertpopup').fadeIn(500);
var options = {
async: false,
target: '#popuptext'
}
$('#marketingform').ajaxSubmit(options);
$('div#popuptext').show();
var popuptopmargin = ($('#alertpopup').height() + 10) / 2;
var popupleftmargin = ($('#alertpopup').width() + 10) / 2;
$('#alertpopup').css({
'margin-top' : -popuptopmargin,
'margin-left' : -popupleftmargin
});
return false;
});
$('#close').click(function () {
$('#alertpopup').hide();
window.location.reload();
return false;
});
//12 July 2012 start
$("#event_type").change(function(){
if(this.value == '3046123'){
$("#other").show();
}
else{
$("#other").hide();
}
});
$("#liveevent_type").change(function(){
if(this.value == '3046110'){
$("#other").show();
}
else{
$("#other").hide();
}
});
$('#subFormConferences').submit(function () {
$('#subFormConferences').validate();
//alert('validating subconferences');
var validated = $('#subFormConferences').valid();
//alert('validated value = '+validated);
if (validated != true) {
return false;
}
else{
$.ajax({
type: 'POST',
async: false,
url: "/enquiryemails/sendemail_conferences",
data: $(this).serialize(),
success: function(data, status, xhr){
//alert('ok conferences data in list is '+data );
},
error: function(xhr, status, err) {
alert(status + ": " + err);
}
});
} //else loop
}); //subFormConferences end
$('#subFormMarketing').submit(function () {
$('#subFormMarketing').validate();
// alert('validating marketing form');
var validated = $('#subFormMarketing').valid();
// alert('validated value = '+validated);
if (validated != true) {
return false;
}
else{
$.ajax({
type: 'POST',
async: false,
url: "/enquiryemails/sendemail_marketing",
data: $(this).serialize(),
success: function(data, status, xhr){
// alert('ok marketing data in list is '+data );
},
error: function(xhr, status, err) {
alert(status + ": " + err);
}
});
} //else loop
}); //subFormMarketing end
$('#subFormLiveEvents').submit(function () {
$('#subFormLiveEvents').validate();
// alert('validating subliveevents');
var validated = $('#subFormLiveEvents').valid();
// alert('validated value = '+validated);
if (validated != true) {
return false;
}
else{
$.ajax({
type: 'POST',
async: false,
url: "/enquiryemails/sendemail_liveevents",
data: $(this).serialize(),
success: function(data, status, xhr){
// alert('ok liveevents data in list is '+data );
},
error: function(xhr, status, err) {
alert(status + ": " + err);
}
});
} //else loop
}); //subFormLiveEvents end
$('#subFormExhibitions').submit(function () {
$('#subFormExhibitions').validate();
// alert('validating subexhibitions');
var validated = $('#subFormExhibitions').valid();
// alert('validated value = '+validated);
if (validated != true) {
return false;
}
else{
$.ajax({
type: 'POST',
async: false,
url: "/enquiryemails/sendemail_exhibitions",
data: $(this).serialize(),
success: function(data, status, xhr){
// alert('ok exhibitions data in list is '+data );
},
error: function(xhr, status, err) {
alert(status + ": " + err);
}
});
} //else loop
}); //subFormExhibitions end
//commenting below one becoz already present below
/*
$('#subForm').submit(function () {
alert('in sub form jquery');
$('#subForm').validate();
var validated = $('#subForm').valid();
// alert('validated value = '+validated);
if (validated != true) {
return false;
}
else{
$.ajax({
type: 'POST',
async: false,
url: "/enquiryemails/sendemail",
data: $(this).serialize(),
success: function(data, status, xhr){
// alert('ok n data in list is '+data );
},
error: function(xhr, status, err) {
alert(status + ": " + err);
}
});
} //else loop
}); //submit loop //subForm end
*/
//12 July 2012 end
});
</script>
<!-- adding the jquery for form validation for subscribers .. 23 Aug 11 -->
<script type="text/javascript">
$(document).ready(function(){ $("#subForm").validate(); });
</script>
<!--24 aug 11.. added iframe resize height script here -->
<script type="text/javascript">
function resize_iframe()
{
var height=window.innerWidth;//Firefox
if (document.body.clientHeight)
{
height=document.body.clientHeight;//IE
}
// resize the iframe according to the size of the
// window (all these should be on the same line)
document.getElementById("acc").style.height=parseInt(height-
document.getElementById("acc").offsetTop-8)+"px";
}
// this will resize the iframe every
// time you change the size of the window.
window.onresize=resize_iframe;
//Instead of using this you can use:
// <BODY onresize="resize_iframe()">
</script>
</head>
<!-- START BODY -->
<body>
<div id="div_middle">
<!-- ///// MENU ///// -->
<div id="div_content">
<h1><a href="/home/"><span>EC&amp;O Venues Earls Court And Olympia</span></a></h1>
<div id="menu">
<!--
<ul style="width:136px; margin:-5px 0 0 0;">
<li>
<a href="http://m.eco.co.uk/" target="_blank" class="holder">Mobile</a>
<a href="http://olympia.co.uk" target="_blank"><img src="/images/olylogo_2013.png" border="0" alt="Olympia"/></a>
</li>
</ul>-->
<ul>
<li><a href="/p/visiting/92" class="holder">Visiting</a></li>
<li><a href="/events/">What's On</a></li>
<li><a href="/p/how-to-get-here/94">How to get here</a></li>
<li><a href="/p/exhibiting/83/">Exhibiting</a></li>
</ul>
<ul>
<li><a href="/p/organising/53" class="holder">Organising</a></li>
<li><a href="/p/conference/54">Conference</a></li>
<li><a href="/p/exhibition/55">Exhibition</a></li>
<li><a href="/p/live-events/91">Event</a></li>
</ul>
<ul>
<li><a href="/p/about-us/26" class="holder">About Us</a></li>
<li><a href="/p/the-venues/3">Our Story</a></li>
<li><a href="/p/press/39">Press</a></li>
<li><a href="/p/sustainability/34">Sustainability</a>
<!-- <a href="http://eco.co.uk/p/london%202012/255">London 2012</a> --></li>
</ul>
<ul style="width:142px;">
<!-- <li class="spacer"><div id="demo"><a href="http://www.eco.bigpictureinteractive.co.uk/login/" class="tu_iframe_800x600"><span class="login">Login</span></a> or <a href="http://www.eco.bigpictureinteractive.co.uk/visitors/enews/" class="tu_iframe_800x600"><span class="login">register</span></a></div></li> -->
<!-- end SCRIPTS FOR LOG IN POP UP WINDOW FORM-->
<li class="spacer"><a href="http://m.eco.co.uk/" target="_blank" class="holder">Mobile</a></li>
<!-- <li class="spacer">&nbsp;</li> -->
<li class="spacer2"><a href="http://www.eco.co.uk//events/feed/" target="_blank" id="btm_rss"><span>rss</span></a><a href="http://twitter.com/ecovenues" target="_blank" id="btm_twitter"><span>EC&amp;O Venues in twitter</span></a><a href="https://www.facebook.com/earlscourtvenue" target="_blank" id="btm_facebook"><span>EC&amp;O Venues in facebook</span></a><a href="http://www.youtube.com/earlscourtolympia" id="btm_youtube" target="_blank"><span>EC&amp;O Venues in youtube</span></a></li>
<!-- <li class="spacer2"><a href="http://m.eco.co.uk/" target="_blank">Mobile site</a></li> -->
</ul>
<div style="clear:both"></div>
</div><!-- End menu -->
</div><!-- End div_content -->
<!-- ///// WINDOW LOGIN ///// -->
<script type="text/javascript">
TopUp.images_path = "/images/top_up/";
</script>
<!-- ///// TICKER ///// -->
<script type="text/javascript">
$(document).ready(function() {
var options = {
newsList: "#news",
startDelay: 15,
placeHolder1: " "
}
$().newsTicker(options);
$("#hide-bar").click(function(){
$("#notice-bar").hide();
// set cookie 60days..
$.cookie('visitedNoticeBar', 'yes', { expires: 60, path: '/' });
//$.cookie('visitedNoticeBar', 'yes');
});
});
</script>
<!-- ///// SEARCH ///// -->
<div id="div_search">
<div id="ticker" class="txtRSS">
<ul id="news" style="padding:0; margin:0; height:13px; list-style:none; width:560px;">
<li style="padding:0; margin:0;"><a href="http://www.eco.co.uk/event/arcade-fire/619">Arcade Fire :: Friday & Saturday 6-7 June :: Click for tickets...</a></li>
<li style="padding:0; margin:0;"><a href="http://itunes.apple.com/gb/app/earls-court-and-olympia-ltd./id510340721?mt=8">Click to download our iPhone app and make the most of your visit...</a></li>
</ul>
</div>
<div id="div_search-form">
<script type="text/javascript" src="/js/jquery.infieldlabel.js"></script>
<script type="text/javascript" charset="utf-8">
$(function(){
$("#lblsearch").inFieldLabels({fadeOpacity:0.3});
});
</script>
<!--[if lte IE 6]>
<style type="text/css" media="screen">
form label {
background: #fff;
}
</style>
<![endif]-->
<form action="/search/index/89" method="post">
<label for="search" style="position:absolute; color:#000000; margin:0 0 0 25px; color:#013a81;" id="lblsearch">Search or Keyword</label>
<input name="search" type="text" id="search" />
<input type="submit" name="submit" value="Go" style="width:25px; margin:0 0 0 19px; height: 12px; background: none;" />
</form>
</div>
<div class="testscale"></div>
</div><!-- End div_search --> <div class="div_container-gnral">
<!-- ///// ICONS HOME AND CONTACT OUTSIDE THE WEBSITE ///// -->
<div id="div_flash_home">
<a href="/home/" id="mnu_home"><span>home</span></a>
<a href="/p/contact-us/42" id="mnu_phone"><span>contact</span></a>
</div><div style="clear:both;">
</div>
<!-- ///// SHADOW BELOW THE SEARCH AREA (We don't need shadow in home page) ///// -->
<div class="shadow-up" ></div> <!-- ///// CONTENT COLUMN LEFT ///// -->
<div id="div-menu">
<div id="div-menu-holder">
<div id="div-menu-holder-text">
Organising </div>
</div>
<ul><li><a href='/p/live-events/91'>Live events</a><ul class='two'><li class='firstli'>&nbsp;</li><li><a href='/p/corporate-event-space/156'>Corporate event space</a><ul><li><a href='/p/your-exclusive-offer-for-hiring-space-at-earls-court/273'>Exclusive agency offer</a></li></ul></li><li><a href='/p/public-event-space/157'>Public event space</a></li><li><a href='/p/testimonials/153'>Testimonials</a></li><li><a href='/p/case-studies/154'>Case studies</a><ul><li><a href='/p/woolworths-kids-first-charity-event/159'>Woolworths Kids Charity Event</a></li></ul></li><li><a href='/p/event-venue-enquiries/262'>Event Venue Enquiries</a></li><li><a href='/p/brochure/158'>Brochure</a></li><li><a href='/p/corporate-event-planning/162'>Corporate events planning</a><ul><li><a href='/p/catering/163'>Catering</a></li><li><a href='/p/service-partners/164'>Service partners</a></li><li><a href='/p/handbooks/165'>Handbooks</a></li><li><a href='/p/high-sided-vehicles/275'>High-Sided Vehicles</a></li><li><a href='/p/meeting-matrix/167'>Meeting Matrix</a></li></ul></li><li><a href='/p/public-events-planning/166'>Public events planning</a><ul><li><a href='/p/public-event-facilities/168'>Facilities</a></li><li><a href='/p/service-partners/169'>Service partners</a></li><li><a href='/p/handbooks/170'>Handbooks</a></li><li><a href='/p/high-sided-vehicles/276'>High-Sided Vehicles</a></li><li><a href='/p/marketing-support/171'>Marketing Support</a></li><li><a href='/p/marketing-round-up/199'>Marketing Round Up</a></li></ul></li><li class='lastli'></li></ul></li><li><a href='/p/conferences/54'>Conferences</a><ul class='two'><li class='firstli'>&nbsp;</li><li><a href='/p/conference-space/88'>Conference space</a></li><li><a href='/p/testimonials/140'>Testimonials</a></li><li><a href='/p/conference-case-studies/141'>Case studies</a><ul><li><a href='/p/marks-and-spencer-case-study/142'>Marks & Spencer Conference</a></li></ul></li><li><a href='/p/download-conference-venue-brochure/150'>Brochure</a></li><li><a href='/p/conference-centre-enquiries/261'>Conference Centre Enquiries</a></li><li><a href='/p/catering/149'>Catering</a></li><li><a href='/p/service-partners/146'>Service partners</a></li><li><a href='/p/high-sided-vehicles/277'>High-Sided Vehicles</a></li><li><a href='/p/facilities/145'>Facilities</a></li><li><a href='/p/handbooks/147'>Handbooks</a></li><li><a href='/p/meetingmatrix/148'>MeetingMatrix</a></li><li class='lastli'></li></ul></li><li><a href='/p/exhibitions/55'>Exhibitions</a><ul class='two'><li class='firstli'>&nbsp;</li><li><a href='/p/event-space/76'>Event space</a></li><li><a href='/p/testimonials/56'>Testimonials</a></li><li><a href='/p/case-studies/57'>Case Studies</a><ul><li><a href='/p/ideal-home-show-at-christmas/230'>Ideal Home Show at Christmas</a></li><li><a href='/p/doctor-who-exhibition/59'>Doctor Who Exhibition </a></li></ul></li><li><a href='/p/download-exhibitions-conference-brochure/272'>Brochure</a></li><li><a href='/p/exhibition-venue-enquiries/263'>Exhibition Venue Enquiries</a></li><li><a href='/p/hospitality-rooms/68'>Hospitality Rooms</a><ul><li><a href='/p/earls-court-one-hospitality-rooms/69'>Earls Court One</a></li><li><a href='/p/earls-court-two-hospitality-rooms/70'>Earls Court Two</a></li></ul></li><li><a href='/p/venues-catering-outlets/62'>Catering outlets</a></li><li><a href='/p/service-partners/63'>Service partners</a></li><li><a href='/p/high-sided-vehicles/278'>High-Sided Vehicles</a></li><li><a href='/p/facilities/61'>Facilities</a></li><li><a href='/p/approved-contractors/64'>Approved contractors</a></li><li><a href='/p/handbooks/65'>Handbooks</a></li><li><a href='/p/rules-and-regulations/66'>Rules & regulations</a></li><li><a href='/p/meeting-matrix/67'>MeetingMatrix</a></li><li><a href='/p/marketing-support/73'>Marketing support</a><ul><li><a href='/p/marketing-round-up/187'>Marketing Round Up</a></li></ul></li><li><a href='/p/useful-links/75'>Useful links</a></li><li class='lastli'></li></ul></li><li><a href='/p/the-venues/152'>The Venues</a><ul class='two'><li class='firstli'>&nbsp;</li><li><a href='/p/venues-virtual-tours/190'>Virtual Tours</a></li><li class='lastli'></li></ul></li><li class='current'><a href='/p/how-to-get-here/77'>How to get here</a><ul class='two'><li class='firstli'>&nbsp;</li><li><a href='/p/tube-strike/282'>Tube Strike</a></li><li class='current'><a href='#' class='currentlink'>Maps</a></li><li><a href='/p/train/99'>Train</a></li><li><a href='/p/tube/90'>Tube</a></li><li><a href='/p/taxi/100'>Taxi</a></li><li><a href='/p/bus/98'>Bus</a></li><li><a href='/p/car/101'>Car</a></li><li><a href='/p/bicycle/97'>Bicycle</a></li><li><a href='/p/motorcycle/138'>Motorcycle</a></li><li><a href='/p/coach/102'>Coach</a></li><li><a href='/p/air/103'>Air</a></li><li><a href='/p/congestion-charging-and-lez/105'>Congestion Charging and LEZ</a></li><li><a href='/p/venue-access/121'>Venue access</a><ul><li><a href='/p/disabled-access/122'>Disabled access</a></li></ul></li><li class='lastli'></li></ul></li><li><a href='/p/food-and-drink/184'>Food and Drink</a></li><li><a href='/p/local-area/267'>Local Area</a></li><li><a href='/p/accommodation/185'>Accommodation</a></li><li><a href='/p/earls-court-organiser-car-parking/81'>Car Parking</a><ul class='two'><li class='firstli'>&nbsp;</li><li><a href='/p/van-parking/274'>Van Parking</a></li><li><a href='/p/organiser-parking-tariffs/106'>Tariffs</a></li><li><a href='/p/earls-court-organiser-parking-faqs/107'>FAQs</a></li><li><a href='/p/earls-court-organiser-parking-terms-and-conditions/108'>Terms and conditions</a></li><li class='lastli'></li></ul></li><li><a href='/p/event-sustainability/74'>Sustainability</a></li><li><a href='/p/organiser-enews-sign-up/208'>eNews Sign Up</a></li></ul>
<div class="div-menu-bottom"></div>
<!-- ///// ENEWS SIGN ///// -->
<div id="div-news-background2">
<!--
<div id="spanpink2"><span class="txtNewsletterTitle">eNews</span><br />
<br />
<br />
<br />
<p class="txtNewsletterDescription">Never miss an event and get TICKET DISCOUNTS! Sign up for free eNews from EC&amp;O - the original and best London venues.</p>
<a id="btnSignUp2" style="margin:0 0 0 22px;" href=""><span>Sign up</span></a>
</div>
-->
<div>
<img src="/images/Side_eNews_button.png" no-repeat center; usemap="#imgmap" style="margin:2px 0 0 -12px; border:none;" />
<map name="imgmap" id="imgmap">
<area shape="rect" coords="40,190,140,225" alt="Sign Up" href="http://www.eco.co.uk/p/enews-sign-up/208"/>
</map>
</div>
</div><!-- end ENEWS SIGN div-news-background2 -->
</div>
<!--
<div class="div-menu-bottom"></div>
<div id="div-news-background2">
<div id="spanpink2"><span class="txtNewsletterTitle">eNews</span><br />
<br />
<br />
<br />
<p class="txtNewsletterDescription">Never miss an event and get TICKET DISCOUNTS! Sign up for free eNews from EC&amp;O - the original and best London venues.</p>
<a id="btnSignUp2" class="tu_iframe_800x600" href="http://www.eco.bigpictureinteractive.co.uk/visitors/enews/"><span>Sign up</span></a> <a id="btnLogIn2" class="tu_iframe_800x600" href="http://www.eco.bigpictureinteractive.co.uk/login/"><span>&nbsp;Log in</span></a> </div>
</div>
</div>
-->
<!-- ///// CONTENT COLUMN MIDDLE ///// -->
<div class="centre-column">
<div class="centre-column-header">
<div class="centre-column-header_text">Maps</div>
</div>
<!-- ///// CONTENT INSIDE COLUMN - FORM ///// -->
<div class="form-details">
<!-- <div class="formcontact"> -->
<table border="0" cellspacing="1" cellpadding="1" width="400">
<tbody>
<tr>
<td><a href="#quick_map">Quick map</a></td>
<td>&nbsp;<a href="#Google_Map">Google Map</a></td>
<td>&nbsp;<a href="#lower_maps">Custom maps</a></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="1" cellpadding="1" width="410">
<tbody>
<tr>
<td>
<h3><a name="quick_map"></a>Quick map</h3>
<p>This is a map of the area around the venues highlighting tube and rail stations and <strong>walking routes&nbsp;</strong>in green. Click the map to see additonal information. You can also&nbsp;<strong><a target="_blank" href="/content/uploads/files/ECO_Map.jpg">download a print quality map with train and airport connections here</a></strong>.</p>
</td>
<td style="text-align: right"><br />
<br />
<br />
<a target="_blank" href="/content/uploads/files/ECO_Map_copy.jpg"><img alt="Click to download a map of road, rail and air connections to Earls Court and Olympia venues in London." width="100" height="86" src="/content/uploads/images/EC&amp;O_Venues_Travel_Map_thumb.jpg" /></a>&nbsp;</td>
</tr>
</tbody>
</table>
<p><a target="_blank" href="/content/uploads/files/ECO_Map_copy.jpg"><img alt="Click to enlarge this map of routes to Earls Court and Olympia exhibition, conference and event venues in London." width="410" height="400" src="/content/uploads/images/ECO_Map_wpostcodes_thumb.jpg" /></a></p>
<br />
<br />
<p><iframe width="420" height="314" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.co.uk/maps?gl=uk&amp;ie=UTF8&amp;t=m&amp;layer=c&amp;cbll=51.489199,-0.197498&amp;panoid=u_Jpj52rIAPGjJuzZVTe6Q&amp;cbp=11,1.5,,0,-10.29&amp;source=embed&amp;ll=51.485499,-0.192604&amp;spn=0.016783,0.036049&amp;z=14&amp;output=svembed"></iframe></p>
<h3><strong><a name="lower_maps"></a><br />
Custom maps</strong></h3>
<p>We&nbsp;know that you often need to print maps. There's a selection below. If you&nbsp;have any problems&nbsp;just let us know on 020 7385 1200.</p>
<table>
<tbody>
<tr>
<td><a target="_blank" href="/content/uploads/files/Earls_Court_map.pdf"><img alt="Information map for Earls Court exhibition, conference and event venues, London." src="/content/uploads/images/Earls_Court_thumb.jpg" /></a></td>
<td>
<p><br />
This is an informative high-resolution pdf map of Earls Court venues. It&nbsp;shows a wider area around the venues, with extensive travel and parking information, specific to Earls Court.<br />
<br />
<a target="_blank" href="/content/uploads/files/Earls_Court_map.pdf">Click to <strong>download a 300dpi pdf</strong> of this map</a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><br />
&nbsp;</p>
</td>
</tr>
<tr>
<td><a target="_blank" href="/content/uploads/files/Earls_Court_detail_map.jpg"><img alt="Map of area around Earls Court Exhibition, Conference and Event venue, London " width="200" height="232" src="/content/uploads/images/EarlsCourtwebthumb.jpg" /></a></td>
<td>
<p>&nbsp;</p>
<p>This is a simple, close-up map of the area around&nbsp;<strong>Earls Court venues</strong>.<br />
<br />
It shows one-way roads, parking, stations and main entrances.&nbsp;<br />
<br />
<a target="_blank" href="/content/uploads/files/Earls_Court_detail_map.jpg">Click to&nbsp;<strong>download a 300dpi jpg</strong>&nbsp;of this map</a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;</p>
</td>
</tr>
<tr>
<td><a target="_blank" href="/content/uploads/files/Earls_Court_Exhibitor_Map.tif"><img alt="Map for exhibitors of area around Earls Court exhibition, conference and event venues, London." width="200" height="266" src="/content/uploads/images/Earls-Court-Exhibitor-Mapwe(1).jpg" /></a></td>
<td>
<p>This is a useful map for exhibitors, of&nbsp;the area around&nbsp;<strong>Earls Court</strong>.<br />
<br />
It shows one-way roads, parking, stations and main entrances.<br />
<br />
<a target="_blank" href="/content/uploads/files/Earls_Court_Exhibitor_Map.tif">Click to&nbsp;<strong>download a 625dpi tif</strong>&nbsp;of this map</a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p> <!-- </div> -->
</div>
<!-- ///// end CONTENT INSIDE COLUMN - FORM ///// -->
<div id="centre-column-bottom" style="clear:both;"></div>
</div><!-- end centre-column -->
<!-- ///// CONTENT COLUMN RIGHT ///// -->
<div style="margin:0; padding:0; width:247px; height:auto; float:right;"><!-- div for the right side -->
<div id="div_container-newsletter">
<div id="div_container-newsletter_up"></div>
<div id="div_container-newsletter_middle">
<div class="sections">
<div style="width:92px; height:auto; float:left;">
<a href="http://www.eco.co.uk/p/the-venues/152">
<img src="/content/rightmenu/c6fc74b8e8e3b9f69e061dacb9bc37c8.jpg" alt="Earls Court Wins Again!" border="0" />
</a>
</div>
<div style=" width:100px; float:left;">
<a href="http://www.eco.co.uk/p/the-venues/152" class="txtHeader">Earls Court Wins Again!<br /></a>
<span class="txtDescrip">Exhibition Venue of the Year 2012 at the EN Awards</span><br />
</div>
<div style="clear:both;"></div>
</div><div class="sections">
<div style="width:92px; height:auto; float:left;">
<a href="http://www.aeo.org.uk/page.cfm/link=128">
<img src="/content/rightmenu/74d1748804a06fb9e187a92fcf2e2285.jpg" alt="Venue Team of the Year" border="0" />
</a>
</div>
<div style=" width:100px; float:left;">
<a href="http://www.aeo.org.uk/page.cfm/link=128" class="txtHeader">Venue Team of the Year<br /></a>
<span class="txtDescrip">EC&O Venues won the AEO Award in 2010 and 2011</span><br />
</div>
<div style="clear:both;"></div>
</div><div class="sections">
<div style="width:92px; height:auto; float:left;">
<a href="http://www.eco.co.uk/p/the-venues/152">
<img src="/content/rightmenu/97db34e04d865ff1e6ee1e98537f6cd1.jpg" alt="Venue of the Year" border="0" />
</a>
</div>
<div style=" width:100px; float:left;">
<a href="http://www.eco.co.uk/p/the-venues/152" class="txtHeader">Venue of the Year<br /></a>
<span class="txtDescrip">Earls Court is your Exhibition Venue of the Year</span><br />
</div>
<div style="clear:both;"></div>
</div><div class="sections">
<div style="width:92px; height:auto; float:left;">
<a href="http://www.olympia.co.uk/organising">
<img src="/content/rightmenu/5094fac843a373a697f296930db0b89c.jpg" alt="Olympia Venues" border="0" />
</a>
</div>
<div style=" width:100px; float:left;">
<a href="http://www.olympia.co.uk/organising" class="txtHeader">Olympia Venues<br /></a>
<span class="txtDescrip">Click to see the venues at Olympia London</span><br />
</div>
<div style="clear:both;"></div>
</div>
</div>
<div id="div_container-newsletter_down"></div>
</div>
<!-- ///// DIV VENUE FINDER ///// -->
<div id="div_container-finder">
<!-- <div id="div_container-finder_up"></div> -->
<div id="div_container-finder_middle">
<!-- <img src="/images/Venue_finder_new1.png" no-repeat center; usemap="#imgmap" /> -->
<form action="/searchvenues/" method="post" name="searchvenue" id="searchvenue">
<!--
<span class="header">VENUE FINDER</span>
<label>Event Type
<select name="eventtype" id="eventtype">
<option value="all">All Types</option>
<option value="01">Exhibition - Consumer</option>
<option value="02">Exhibition - Trade</option>
<option value="03">Conference</option>
<option value="04">Confex</option>
<option value="05">Corporate event</option>
<option value="06">Public event</option>
</select>
</label>
<label>Area (m<sup>2</sup>)*
<select name="area" id="area">
<option value="all">Please select</option>
<option value="0-50">1 - 49</option>
<option value="49-500">50 - 499</option>
<option value="499-2000">500 - 1999</option>
<option value="1999-5000">2000 - 4999</option>
<option value="4999-10000">5000 - 9999</option>
<option value="9999-25000">10000 - 24999</option>
<option value="24999-50001">25000 - 50000</option>
</select>
</label>
<br /><br />
<p class="text">Venue preference:
<label class="txtLabel"> <br />
<input type="radio" name="venuepreferences" value="ec" />
Earl's Court
</label><br />
<label class="txtLabel">
<input type="radio" name="venuepreferences" value="ol" />
Olympia
</label><br />
<label>
<input name="venuepreferences" type="radio" value="all" checked="checked" />
<span class="txtLabel">No preference </span>
</label><br />
</p>
-->
<select name="eventtype" id="eventtype">
<option value="all">All Types</option>
<option value="01">Exhibition - Consumer</option>
<option value="02">Exhibition - Trade</option>
<option value="03">Conference</option>
<option value="04">Confex</option>
<option value="05">Corporate event</option>
<option value="06">Public event</option>
</select>
<br/>
<select name="area" id="area">
<option value="all">Please select</option>
<option value="0-50">1 - 49</option>
<option value="49-500">50 - 499</option>
<option value="499-2000">500 - 1999</option>
<option value="1999-5000">2000 - 4999</option>
<option value="4999-10000">5000 - 9999</option>
<option value="9999-25000">10000 - 24999</option>
<option value="24999-50001">25000 - 50000</option>
</select>
<br/>
<div id=radiobutton >
<input type="radio" name="venuepreferences" value="ec" />
<br/>
<input type="radio" name="venuepreferences" value="ol" />
<br/>
<input name="venuepreferences" type="radio" value="all" checked="checked" />
</div>
<div style="clear:both;"></div>
<div id="search1">
<img src="/images/organising/search_bluesides.png" no-repeat center; usemap="#imgmap" />
<map name="imgmap" id="imgmap">
<area shape="rect" coords="0,0,160,162" alt="Sign Up" href="javascript:document.searchvenue.submit();"/>
</map>
</div>
<!--
<span class="txtSearch">
<a href="javascript:document.searchvenue.submit();">search
</a>
</span>
<span>
</span>
-->
</form>
</div>
<!-- <div id="div_container-finder_down"></div> -->
</div><!-- end div venue finder div_container-finder -->
<div style="clear:both;"></div>
</div><!-- end div for the right side -->
<div id="div_home-visiting"><img src="/images/home-ant.png" alt="home" width="13" height="13" border="0" />&nbsp;<a href="/" class="ecandohomepage">Homepage</a> <img src="/images/path-ant.png" alt="path" width="13" height="13" border="0" /><a href="/pages/organising/53">Organising</a> <img src="/images/path-ant.png" alt="path" width="13" height="13" border="0" /> <a href="/pages/how-to-get-here/77">How to get here</a> <img src="/images/path-ant.png" alt="path" width="13" height="13" border="0" /> <a href="/pages/maps/89">Maps</a></div> <div style="clear:both;"></div>
</div><!-- end div_container-gnral -->
<!-- SITE MAP -->
<div id="div_linksgoogle">
<ul><li><a href="/p/visiting/92" class="title">Visiting</a></li><li><a href='/p/whats-on/93'>What's On</a></li><li><a href='/p/how-to-get-here/94'>How to get here</a></li><li><a href='/p/disabled-access/120'>Disabled access</a></li><li><a href='/p/accommodation/172'>Accommodation</a></li><li><a href='/p/food-and-drink/95'>Food and Drink</a></li><li><a href='/p/local-area/268'>Local Area</a></li><li><a href='/p/venue-floor-plans/119'>Venue floor plans</a></li><li><a href='/p/car-parking/173'>Car Parking</a></li><li><a href='/p/visitor-enews-sign-up/198'>eNews Sign Up</a></li></ul><ul><li><a href="/p/organising/53" class="title">Organising</a></li><li><a href='/p/live-events/91'>Live events</a></li><li><a href='/p/conferences/54'>Conferences</a></li><li><a href='/p/exhibitions/55'>Exhibitions</a></li><li><a href='/p/the-venues/152'>The Venues</a></li><li><a href='/p/how-to-get-here/77'>How to get here</a></li><li><a href='/p/food-and-drink/184'>Food and Drink</a></li><li><a href='/p/local-area/267'>Local Area</a></li><li><a href='/p/accommodation/185'>Accommodation</a></li><li><a href='/p/earls-court-organiser-car-parking/81'>Car Parking</a></li><li><a href='/p/event-sustainability/74'>Sustainability</a></li><li><a href='/p/organiser-enews-sign-up/208'>eNews Sign Up</a></li></ul><ul><li><a href="/p/exhibiting/83" class="title">Exhibiting</a></li><li><a href='/p/how-to-exhibit/84'>How to exhibit</a></li><li><a href='/p/useful-information/85'>Useful information</a></li><li><a href='/p/venue-facilities/86'>Venue facilities</a></li><li><a href='/p/how-to-get-here/96'>How to get here</a></li><li><a href='/p/food-and-drink/183'>Food and Drink</a></li><li><a href='/p/local-area/266'>Local Area</a></li><li><a href='/p/accommodation/182'>Accommodation</a></li><li><a href='/p/venue-floor-plans/135'>Venue floor plans</a></li><li><a href='/p/high-sided-vehicles/279'>High-Sided Vehicles</a></li><li><a href='/p/exhibitor-car-parking/87'>Car Parking</a></li><li><a href='/p/exhibitor-enews-sign-up/209'>eNews Sign Up</a></li></ul><ul><li><a href="/p/about-us/26" class="title">About us</a></li><li><a href='/p/earls-court/1'>Earls Court</a></li><li><a href='/p/press/39'>Press</a></li><li><a href='/p/corporate-social-responsibility/27'>Corporate Social Responsibility</a></li><li><a href='/p/sustainability/34'>Sustainability</a></li><li><a href='/p/recruitment/5'>Recruitment</a></li><li><a href='/p/contact-us/42'>Contact us</a></li></ul>
<ul>
<li>&nbsp;</li>
</ul>
<ul>
<li><a href="#">&nbsp;</a></li>
<li><a href="/p/site-map/80">Site Map</a></li>
<li><a href="/p/site-credits/181">Site Credits</a></li>
<li><a href="/p/accessibility/78">Accessibility</a></li>
<li><a href="/p/t-cs/79">T&amp;Cs</a></li>
<li><a href="/p/privacy/20">Privacy &amp; Cookies</a></li>
<!-- <li><a href="/p/policy/218">Policy</a></li> -->
<li><a href="/p/what-is-rss/180">What is RSS?</a></li>
<li><a href="/p/support/201">Support</a></li>
</ul>
</div> <!-- end SITE MAP div_linksgoogle-->
<!-- ADDRESS EARLS COURT AND OLYMPIA -->
<div id="div_bottom">
<span class="address"><!-- Copyright Earls Court &amp; Olympia - 2009. All Rights Reserved. Earls Court Exhibition Centre, Warwick Road, London SW5 9TA, England, registration no:454826 -->
&copy; Earls Court and Olympia Limited, registered in England and Wales number 238811. Registered office: 15 Grosvenor Street, London W1K 4QZ.
</span>
<div style="clear:both;"></div>
</div><!-- end ADDRESS and div?bottom -->
<!--CLICKY STATS -->
<!--
<script src="http://static.getclicky.com/js" type="text/javascript"></script>
<script type="text/javascript">clicky.init(157977);</script>
<noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/157977ns.gif" /></p></noscript>
-->
<!-- GOOGLE STATS -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-43881074-1', 'eco.co.uk');
ga('send', 'pageview');
</script>
<!-- addthis script below should be added after google analytics.. 23Jan 2012 the entire script below later uncomment it-->
<!--
<script type="text/javascript">
var addthis_config = {
ui_cobrand: "EC&amp;O Venues",
ui_header_color: "#FFFFFF",
ui_header_background: "#013a81",
services_compact: 'digg, facebook, twitter, delicious, reddit, stumbleupon, myspace, google, live, mixx, technorati, more',
services_exclude: 'email',
ui_click: true,
ui_offset_top: -24,
ui_offset_left: -130,
data_ga_property: 'UA-2711532-1',
data_ga_social : true
}
</script>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4e523a81514bd692"></script>
-->
<!-- Page rendered in 0.0329 seconds || Memory usage: 3.23MB -->
</div><!-- end div_middle -->
<!-- SHADOW UNDER THE PAGE -->
<div id="div_bottom_shadow"></div><!-- end div shadow under the page div_bottom_shadow -->
</body>
</html>