  // This function picks up the click and opens the corresponding info window
  function myclick(i) {
	gmarkers[i].openInfoWindowHtml(htmls[i]);
  }
  // Functions that open the directions To/From the location
  function tohere(i) {
	gmarkers[i].openInfoWindowHtml(to_htmls[i]);
  }
  function fromhere(i) {
	gmarkers[i].openInfoWindowHtml(from_htmls[i]);
  }