// JavaScript Document for the Google Maps

///<![CDATA[

//<![CDATA[

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 GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(33.674674,-111.977156), 10);

var point = new GLatLng(33.674674,-111.977156);
var html = '<div class="mapBox" style="width:200px; height:180px;"><strong>Cullan and Cullan M.D., J.D.</strong><form action="http://maps.google.com/maps" method="get" target="_blank">20830 N. Tatum Blvd, Ste. 360<br />Phoenix, AZ 85050-7268<br/>Local 602.427.0000 or Toll Free 877.450.6551<br /><em>Directions to here from</em>: <br /><input type="text"   name="saddr" value="" size="25"><br /><input type="hidden" name="daddr" value="Phoenix, AZ, 85050" /><input type="hidden" name="hl" value="en"><input type="submit" value="Directions"/></form></div>'
var marker = createMarker(point,html)
map.addOverlay(marker);
marker.openInfoWindowHtml(html);

}}

//]]>


//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 GMap2(document.getElementById("map"));
//map.addControl(new GLargeMapControl());
//map.addControl(new GMapTypeControl());
//map.setCenter(new GLatLng(33.674674,-111.977156), 6);
//
//var point = new GLatLng(33.674674,-111.977156);
//var html = '<div class="mapBox" style="width:200px; height:180px;"><strong>Cullan and Cullan M.D., J.D.</strong><form action="http://maps.google.com/maps" method="get" target="_blank">20830 N. Tatum Blvd, Ste. 360<br />Phoenix, AZ 85050-7268<br/>Local 602.200.9999 or Toll Free 888.600.8701<br /><em>Directions to here from</em>: <br /><input type="text"   name="saddr" value="" size="25"><br /><input type="hidden" name="daddr" value="Phoenix, AZ 85050-7268" /><input type="hidden" name="hl" value="en"><input type="submit" value="Directions"/></form></div>'
//var marker = createMarker(point,html)
//map.addOverlay(marker);
//marker.openInfoWindowHtml(html);
//
//}}

//]]>

