function showDirectionForm(){document.getElementById("get-directions-link").className="hidden";document.getElementById("get-directions-form").removeAttribute("class");document.getElementById("get-directions-form").removeAttribute("className");}
function load(){if(GBrowserIsCompatible()){var map=new GMap2(document.getElementById("location-map"));map.setCenter(new GLatLng(32.989444,-117.259698),13);map.addControl(new GSmallMapControl());function createMarker(point,html){var sccsIcon=new GIcon(G_DEFAULT_ICON);sccsIcon.image="img/page-elements/sccs-gmap-marker.png";sccsIcon.iconSize=new GSize(32,24);sccsIcon.iconAnchor=new GPoint(12,24);sccsIcon.shadow="img/page-elements/sccs-gmap-marker-shadow.png";sccsIcon.shadowSize=new GSize(45,24);sccsIcon.infoWindowAnchor=new GPoint(16,1);sccsMarkerOptions={icon:sccsIcon};var marker=new GMarker(point,sccsMarkerOptions);GEvent.addListener(marker,"click",function(){marker.openInfoWindowHtml(html);});return marker;}
var point=new GLatLng(32.989444,-117.259698);var html="<div id=\"sccsWindow\">";html=html+"<h4 style=\"margin: 0;\">South Coast Copy Systems</h4>";html=html+"<p>742 Genevieve Street, Suite D<br />Solana Beach, CA 92075</p>";html=html+"<p><strong>Phone:</strong> (858) 794-9940</p>";html=html+'<p id="get-directions-link"><strong>Directions:</strong> <a href="javascript:showDirectionForm();">To SCCS</a></p>';directionFormHtml=html+'<form action="http://maps.google.com/maps" method="get" target="_blank" id="get-directions-form" class="hidden">Start address:'+'<input type="text" size="40" maxlength="40" name="saddr" id="saddr" value="" /><br />'+'<input value="Get Directions" type="submit" /><br/>'+'<input type="hidden" name="daddr" value="'+point.lat()+','+point.lng()+'"/></form>';html=directionFormHtml+"<br /></div>";var sccsMarker=createMarker(point,html);map.addOverlay(sccsMarker);sccsMarker.openInfoWindowHtml(html);}}