var map;

function load() {
  if (GBrowserIsCompatible()) {
      map = new GMap2(document.getElementById("map"));
      map.setCenter(new GLatLng(39.567475, -120.629025), 17-5);
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
      map.addMapType(G_PHYSICAL_MAP);
      marker = new PdMarker(new GLatLng(39.567475, -120.629025));
      marker.setTooltip("Yuba River Inn");
      var html = " Visit <a href='www.yubariverinn.com>Yuba River Inn<\/a>'";
      marker.setDetailWinHTML(html);
      <!-- marker.setHoverImage("http://www.goodyearsbar.com/pics/wwsmcmed.png"); -->
      map.addOverlay(marker);
                              }
var marker = new PdMarker(new GLatLng(39.565484, -120.636352));
marker.setTooltip("Sierra Chalet Motel");
map.addOverlay(marker);
var marker = new PdMarker(new GLatLng(39.565520, -120.636362));
marker.setTooltip("Busch &amp; HeringlakeInn");
map.addOverlay(marker);
var marker = new PdMarker(new GLatLng(39.565508, -120.636436));
marker.setTooltip("Buckhorn Lodge");
map.addOverlay(marker);
                }

<!-- This is 6, Sierra City CA Aug 6,09 -->

 
   function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 13);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml(address);
            }
          }
        );
      }
    }
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList

sfHover = function() {     
     var sfEls = document.getElementById("nav").getElementsByTagName("LI");
     for (var i=0; i<sfEls.length; i++) {
         sfEls[i].onmouseover=function() {
             this.className+=" sfhover";         
         }
         sfEls[i].onmouseout=function() {
  this.className=this.className.replace(new RegExp("sfhover\\b"), "");         
             }     
       } 
}
 if (window.attachEvent) window.attachEvent("onload", sfHover); 


function openWindow(theURL,winName,winWidth,winHeight,otherFeatures) {
   var x = 0;
   var y = 0;
   x = (screen.availWidth - 12 - winWidth) / 2;
   y = (screen.availHeight - 48 - winHeight) / 2;
   if (otherFeatures != "") {otherFeatures = "," + otherFeatures}
   var features = "screenX=" + x + ",screenY=" + y + ",width=" + winWidth +
",height=" + winHeight+",top="+y+",left="+x+"'" + otherFeatures
   var NewWindow = window.open(theURL,winName,features);
   NewWindow.focus();
}

function open2Window(url, name, param) {
	  popupWin = window.open(url, name, param)
	}

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message="Function Disabled!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")