function OnLoad() {

  // Create an array of hotspots. Each entry contains and html element
  // from your page, and the query to execute when that element is clicked
  var hotspotsList = [
      { element : document.getElementById("hs01"), query : "Urban Oasis Day Spa" },
      { element : document.getElementById("hs02"), query : "The Met Day Spa and Salon" },
      { element : document.getElementById("hs03"), query : "Spa Hollywood" },
      { element : document.getElementById("hs04"), query : "Body and Spirit" },
      { element : document.getElementById("hs05"), query : "Nuovo Salon & Spa" },
	  { element : document.getElementById("hs06"), query : "Mandala Medi Spa" }
  ];
  
  // set title to the Googleplex and the link to
  // the Google corporate information page
  // set the hotspot list to the list above
  var options =
    { title : "Urban Oasis Day Spa",
      url : "http://www.urbanoasisdayspa.com/",
      hotspots : hotspotsList,
	  mapTypeControl : GSmapSearchControl.MAP_TYPE_ENABLE_ACTIVE
    }

  // create the map search control
  new GSmapSearchControl(
        document.getElementById("mapsearch"),
        "1517 State St. Sarasota, FL 34236",
        options
        );
}