function OnLoad() { var bubbletext = 'Bell & Co
Marlborough House,Charnwood Street,Derby
DE1 2GT
Get Directions
'; var options = { title : "Bell & Co", url : "www.bellbrokers.co.uk", zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL } var gmap = new GSmapSearchControl( document.getElementById("mapsearch"), "DE1 2GT 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}); } }