function load() {
      if (GBrowserIsCompatible()) {
      function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
      var map    = new GMap(document.getElementById("map"));
      var point  = new GPoint(-81.025522,34.008318);
      var point2  = new GPoint(-80.336631, 33.929207);
      var point3  = new GPoint(-81.236891, 33.98181);
      var point4  = new GPoint(-80.854955, 33.524081);
      var point5  = new GPoint(-81.610544, 34.298742);
      var point6  = new GPoint(-81.720235, 33.563015);
      var point7  = new GPoint(-80.607913, 34.24622);
      
      var html   = '<br /><strong>Columbia Office</strong><br />1807 Hampton Street<br />Columbia, South Carolina 29201';
      html += '<form action="http://maps.google.com/maps" method="get" target="_blank">';
      html += '<em>Directions to here from</em>: <br />';
      html += '<input type="text"   name="saddr" value="" size="25"><br />';
      html += '<input type="hidden" name="daddr" value="1807 Hampton Street, 29201" />';
      html += '<input type="hidden" name="hl" value="en">';
      html += '<input type="submit" value="Directions"/></form>'; 
      
      var htm2   = '<br /><strong>Sumter Office</strong><br />485 N. Lafayette Drive<br />South Carolina 29150';
      htm2 += '<form action="http://maps.google.com/maps" method="get" target="_blank">';
      htm2 += '<em>Directions to here from</em>: <br />';
      htm2 += '<input type="text" name="saddr" value="" size="25"><br />';
      htm2 += '<input type="hidden" name="daddr" value="485 N. Lafayette Drive, 29150" />';
      htm2 += '<input type="hidden" name="h2"   value="en">';
      htm2 += '<input type="submit" value="Directions"/></form>'; 
	 
      var htm3   = '<br /><strong>Lexington Office</strong><br />119 East Main Street<br />Lexington, South Carolina 29072';
      htm3 += '<form action="http://maps.google.com/maps" method="get" target="_blank">';
      htm3 += '<em>Directions to here from</em>: <br />';
      htm3 += '<input type="text" name="saddr" value="" size="25"><br />';
      htm3 += '<input type="hidden" name="daddr" value="119 East Main Street, 29072" />';
      htm3 += '<input type="hidden" name="h3"   value="en">';
      htm3 += '<input type="submit" value="Directions"/></form>'; 
      
      var htm4   = '<br /><strong>Orangburg Office</strong><br />104 Office Park Drive<br />Orangeburg, South Carolina 29118';
      htm4 += '<form action="http://maps.google.com/maps" method="get" target="_blank">';
      htm4 += '<em>Directions to here from</em>: <br />';
      htm4 += '<input type="text" name="saddr" value="" size="25"><br />';
      htm4 += '<input type="hidden" name="daddr" value="104 Office Park Drive, 29118" />';
      htm4 += '<input type="hidden" name="h4"   value="en">';
      htm4 += '<input type="submit" value="Directions"/></form>'; 
	 
      var htm5   = '<br /><strong>Newberry Office</strong><br />2203 Wilson Road<br />Newberry, South Carolina 29108';
      htm5 += '<form action="http://maps.google.com/maps" method="get" target="_blank">';
      htm5 += '<em>Directions to here from</em>: <br />';
      htm5 += '<input type="text" name="saddr" value="" size="25"><br />';
      htm5 += '<input type="hidden" name="daddr" value="2203 Wilson Road, 29108" />';
      htm5 += '<input type="hidden" name="h5"   value="en">';
      htm5 += '<input type="submit" value="Directions"/></form>'; 
	 
      var htm6   = '<br /><strong>Aiken Office</strong><br />231-C Barnwell Avenue, NW<br />Aiken, South Carolina 29801';
      htm6 += '<form action="http://maps.google.com/maps" method="get" target="_blank">';
      htm6 += '<em>Directions to here from</em>: <br />';
      htm6 += '<input type="text" name="saddr" value="" size="25"><br />';
      htm6 += '<input type="hidden" name="daddr" value="231-C Barnwell Avenue, NW, 29801" />';
      htm6 += '<input type="hidden" name="h6"   value="en">';
      htm6 += '<input type="submit" value="Directions"/></form>'; 
	 
      var htm7   = '<br /><strong>Camden Office</strong><br />623 W Dekalb St<br />Camden, South Carolina 29020';
      htm7 += '<form action="http://maps.google.com/maps" method="get" target="_blank">';
      htm7 += '<em>Directions to here from</em>: <br />';
      htm7 += '<input type="text" name="saddr" value="" size="25"><br />';
      htm7 += '<input type="hidden" name="daddr" value="623 W Dekalb St, 29020" />';
      htm7 += '<input type="hidden" name="h7"   value="en">';
      htm7 += '<input type="submit" value="Directions"/></form>'; 
	 
      var marker = new createMarker(point, html);
      var marker2 = new createMarker(point2, htm2);
      var marker3 = new createMarker(point3, htm3);
      var marker4 = new createMarker(point4, htm4);
      var marker5 = new createMarker(point5, htm5);
      var marker6 = new createMarker(point6, htm6);
      var marker7 = new createMarker(point7, htm7);
      
      map.addControl(new GLargeMapControl());
      map.addControl(new GMapTypeControl());
      
      map.centerAndZoom(point, 10);    
      
      map.addOverlay(marker);
      map.addOverlay(marker2);
      map.addOverlay(marker3);
      map.addOverlay(marker4);
      map.addOverlay(marker5);
      map.addOverlay(marker6);
      map.addOverlay(marker7);
      
      marker.openInfoWindowHtml(html);
      marker.openInfoWindowHtml(htm2);
      marker.openInfoWindowHtml(htm3);
      marker.openInfoWindowHtml(htm3);
      marker.openInfoWindowHtml(htm4);
      marker.openInfoWindowHtml(htm5);
      marker.openInfoWindowHtml(htm6);
      marker.openInfoWindowHtml(htm7);
      
      }
    }