function OnLoad() { var bubbletext = "Foster Leighton & Co Ltd
Kings Wharf, The Quay,Exeter, Devon
EX2 4AN
Get Directions"; var options = { title : "Foster Leighton & Co Ltd", url : "www.fosterleighton.com", zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL } var gmap = new GSmapSearchControl( document.getElementById("mapsearch"), "EX2 4AN UK", options ); // show the center of the map GSmapSearchControl.prototype.onCenterClick = function() { this.mapCenterMarker.openInfoWindow(bubbletext, {maxWidth:200}); } // show the center of the map GSmapSearchControl.prototype.onIdleCenterClick = function() { // transition to semi-active state and open the center info window this.clearMarkers(); GSmapsc_cssSetClass(this.prevNext, "gsmc-prevNext gsmsc-prev-next-active"); GSmapsc_cssSetClass(this.appContainer, "gsmsc-appContainer gsmsc-active"); GSmapsc_cssSetClass(this.prev, "gsmsc-prev gsmsc-prev-idle"); GSmapsc_cssSetClass(this.next, "gsmsc-next gsmsc-next-idle"); this.searchForm.input.value = ""; this.gmap.checkResize(); this.idle = false; this.mapCenterMarker.openInfoWindow(bubbletext, {maxWidth:200}); } }