/*GOOGLE MAPS API*/
	
function handleNoFlash(errorCode) {
	 if (errorCode == 603) {
	    alert("Error: Flash doesn't appear to be supported by your browser");
	    return;
	 }
} 
	
	
function flag_center(text){
	//TEXT BALOON AT CENTER OF MAP 				
	map.openInfoWindow(map.getCenter(), document.createTextNode(text));
}

function showAddress(address,html) {
var geocoder = new GClientGeocoder();
  	geocoder.getLatLng( address,
    function(point) {		
      if (!point) {
        alert(address + " not found");
      } else {
	  	map.clearOverlays();
        map.panTo(point, 15);
        var marker = new GMarker(point);
        map.addOverlay(marker);
		html += address;
        marker.openInfoWindowHtml(html);
      }
    }
  );
  

}

  function clear(){
  	map.clearOverlays();
	showAddress('402 North Blackford Street Indianapolis Indiana','<p>School of Science</p>');
  }