document.write('<img id="logo" src="/images/logoLarge.png" width="750" height="250">');
document.write('<link href="/print.css" rel="Stylesheet" media="print">');

document.write(''
  + '<div id="navL">'
  + '<h4>About Us</h4>'
  + '<a href="http://mondl.us" title="Visit the home page">Home Page</a>'
  + '<a href="http://mondl.us/newsletter/" title="Read our newsletters">Newsletter</a>'
  + '<h4>Volunteering</h4>'
  + '<a href="http://volunteer.gov/gov" title="We are building communities of service and need the help of people like you – the fundamental builders of civil society – volunteers!">http://volunteer.gov/gov</a>'
  + '<a href="http://takepride.gov" title="You can find opportunities for volunteering on federal lands, state and local contacts in many states, and information about how to initiate your own Take Pride in America project or event.">Take Pride in America</a>'
  + '<a href="http://www.takepride.info" title="Friends of Take Pride in America--make sure to register here">http://www.takepride.info</a>'
  + '<a href="http://www.freedomcorps.gov/" title="Make a difference.  Volunteer.">Freedom Corps</a>'
  + '<h4>Favorite Links</h4>'
  + '<a href="http://www.fmca.com/" title="FMCA.com - Family Motor Coach Association: Home to motorhome enthusiasts interested in RVing.">FMCA</a>'
  + '<a href="http://michiganknights.com" title="Michigan Knights of the Highways-Chapter of the Family Motor Coach Association (FMCA)">Michigan Knights</a>'
  + '<a href="http://gorp.away.com/gorp/resource/statepark/main.htm" title="State Parks">State Parks</a>'
  + '<a href="http://www.usace.army.mil/" title="US Army Corps of Engineers Home Page">Army Corps of Engineers</a>'
  + '<a href="http://www.firstgov.gov/" title="The US Government Official Web Portal">FirstGov</a>'
  + '</div>');

document.write('<div id="helpText"></div>');
if (navigator.appName == "Microsoft Internet Explorer") {
	document.getElementById('helpText').style.width = '100%';
	document.getElementById('helpText').color = 'yellow' }

document.onmouseover = rollon;
document.onmouseout = rolloff;

UpdateIt();
if (navigator.appName != "Microsoft Internet Explorer") InitNS();

function rollon(e) {
var targ;
  if (!e) var e = window.event;
  if (e.target) targ = e.target;
    else if (e.srcElement) targ = e.srcElement;
  if (targ.title != "") {
    document.getElementById('helpText').style.display = "block";
      if (navigator.appName == "Microsoft Internet Explorer")
        document.getElementById('helpText').innerHTML = "<p>" + targ.title + "</p>";
      else
        document.getElementById('helpText').innerHTML = targ.title;
  }
}

function rolloff() {
  if (document.getElementById('helpText').style.display == "block") {
     document.getElementById('helpText').style.display = "none";
  }
}

function flip(what) {
  if (what.style.display == "none")
  	what.style.display = "block" 
  else 
    what.style.display="none"; 
}

function UpdateIt(){
  setTimeout("UpdateIt()", 200);
  if (navigator.appName == "Microsoft Internet Explorer")
    document.getElementById('helpText').style.top = document.body.scrollTop + 2;
  else
    if (document.getElementById('helpText')!=null) {
      document.getElementById('helpText').style.top = window.pageYOffset + 2;
    }
}

function InitNS() {
  document.write("<style>div#helpText {color: red; background: white}</style>");
}

