// JavaScript Document

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


<!-- Google Maps -->

    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
// Zoom Controls with position
		map.addControl(new GSmallZoomControl(), new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(0, 5)));
			   
// Create our "UFW" marker icon
		var icon = new GIcon();
			icon.image = "http://www.ufw.com/images/misc/map_pt.png";
			icon.shadow = "http://www.ufw.com/images/misc/map_pt_shdw.png";
			icon.iconSize = new GSize(80, 55);
			icon.shadowSize = new GSize(80, 55);
			icon.iconAnchor = new GPoint(6, 20);
			icon.infoWindowAnchor = new GPoint(35, 10);

// Set Center and magnification
        map.setCenter(point, 14);
		
// Our info window content
		var infoTabs = [
		  new GInfoWindowTab("Location", UFW_Loction)
		];
		
// Place a marker in the center of the map and open the info window automatically
		var marker = new GMarker(point, icon);
		GEvent.addListener(marker, "click", function() {
		  marker.openInfoWindowTabsHtml(infoTabs);
		});
		map.addOverlay(marker);
		//marker.openInfoWindowTabsHtml(infoTabs);
		}
    }

    //]]>