function IncludeGentleReminder() {
document.writeln('<p class="ahem">');
document.writeln('<big>');
document.writeln('Our Web site was rewritten to conform with current Web');
document.writeln('standards (XHTML 1.0 Strict). This includes the use of');
document.writeln('Cascading Style Sheets and other mark-up. If this text');
document.writeln('appears in your screen, your browser does NOT fully support');
document.writeln('<a href="http://www.w3.org/Style/">Cascading Style Sheets</a>.');
document.writeln('You can still look at the content of this Web page, but');
document.writeln('most likely it is not in its intended layout, which can');
document.writeln('only be done if you');
document.writeln('<a href="http://www.webstandards.org/upgrade/">replace</a> ');
document.writeln('your browser with one that supports web standards.');
document.writeln('</big>');
document.writeln('</p>');
}


function IncludeHeader() {
document.writeln('<div id="CMHLatinoHeader">');
document.writeln('   <div id="image-centered">');
document.writeln('	    <img src="images/Logo.png"');
document.writeln('	         longdesc="Header image and links"');
document.writeln('	         alt="E. A. Obregon / CMH Memorial Foundation"');
document.writeln('	         width="720px"');
document.writeln('	         height="120px"');
document.writeln('	    />');
document.writeln('   </div>');
document.writeln('</div>');
}

function IncludeFooter() {
document.writeln('<div id="CMHLatinoFooter">');
document.writeln('   <div id="image-centered">');
document.writeln('	    <img src="images/AllServicesEmblems.gif"');
document.writeln('	         longdesc="Footer image and links"');
document.writeln('	         alt="Links to Services"');
document.writeln('	         width="600px"');
document.writeln('	         height="80px"');
document.writeln('	    />');
document.writeln('   </div>');
document.writeln('</div>');
}


function openPrinterFriendly() {
    WindowProps =  'toolbar=0, ';
    WindowProps += 'location=0, ';
    WindowProps += 'directories=0, ';
    WindowProps += 'scrollbars=1, ';
    WindowProps += 'status=0, ';
    WindowProps += 'menubar=0, ';
    WindowProps += 'resizable=1, ';
    WindowProps += 'width=420px, ';
    WindowProps += 'height=400px';
    open("WhyPrinterFriendly.html", "PrinterFriendly", WindowProps);
}

function openImageWindow(URL, baseURL, ALT, WIDTH, HEIGHT) 
{	WindowName = URL.substring(URL.lastIndexOf("/")+1);
	WindowProps = "width=" + (WIDTH+50) + ",height=" + (HEIGHT+75);
	text  = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
	text += '<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">';
	text += '<head>';
	text += '<base href="'+ baseURL + '" />';
	text += '<title>'+ WindowName + ' (' + WIDTH + 'x' + HEIGHT + ' pixels) </title>';
	text += '<style	type="text/css">';
	text += '@import "CSSScripts/RLSlabStyle.css";';
	text += '</style>';
	text += '</head>';
	text += '<body>';
	text += '<div class="plain-image">';
	text += '<div class="table">';
	text += '<div class="table-row">';
	text += '<div class="table-cell-image">';
	text += '<img src="' + URL + '" ';
	text += 'width="' + WIDTH + 'px "';
	text += 'height="' + HEIGHT + 'px "';
	text += 'alt="' + ALT + '" />';
	text += '</div>';
	text += '</div>';
	text += '<div class="table-row">';
	text += '<div class="table-cell-short-caption">';
	text += '<p>';
	text += '<a href="javascript:parent.window.close()"';
	text += 'onclick="parent.window.close()">CLOSE THIS WINDOW</a>';
	text += '</p>';
	text += '</div>';
	text += '</div>';
	text += '</div>';
	text += '</body></html>';
	ImageWindow = window.open("", WindowName, WindowProps);
	ImageWindow.document.open();
	ImageWindow.document.write(text);
	ImageWindow.document.close();
}

function openFigWindow(URL, baseURL, ALT, CAPTION,  WIDTH, HEIGHT) 
{	UncleanCaption = String(CAPTION)
	UncleanCaption = UncleanCaption.replace('\t','')
	UncleanCaption = UncleanCaption.replace('  ',' ')
	temp0 = UncleanCaption.split("<a")
	CleanCaption   = new String("")
	for (i=0; i < temp0.length; ++i)
	{ if (i == 0)
	  {  CleanCaption += String(temp0[i])
	  }
	  else
	  {  temp = String(String(temp0[i]).split('\'>')[1]).split("</a>")
	     CleanCaption += temp[0].concat(temp[1])
	  }
	}
	if (WIDTH > 800) 
	{  CaptSpace = 18*(CleanCaption.length)*10/600;
	   if (CaptSpace < 18){CaptSpace = 18};
	}
	else
	{  CaptSpace = 18*(CleanCaption.length)*10/WIDTH;
	   if (CaptSpace < 18){CaptSpace = 18};
	}
	WindowWidth = WIDTH + 50;
	WindowHeight = HEIGHT + 50 + 40 + CaptSpace;
	if (WindowHeight > 800)
	{
	    WindowHeight = 800;
	}
	WindowName = URL.substring(URL.lastIndexOf("/")+1);
	WindowProps = "width=" + WindowWidth + ",height=" + WindowHeight;
	text  = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
	text += '<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">';
	text += '<head>';
	text += '<base href="'+ baseURL + '" />';
	text += '<title>'+ WindowName + ' (' + WIDTH + 'x' + HEIGHT + ' pixels) </title>';
	text += '<style	type="text/css">';
	text += '@import "CSSScripts/RLSlabStyle.css";';
	text += '</style>';
	text += '</head>';
	text += '<body>';
	text += '<div class="plain-image">';
	text += '<div class="table">';
	text += '<div class="table-row">';
	text += '<div class="table-cell-image">';
	text += '<img src="' + URL + '" ';
	text += 'width="' + WIDTH + 'px "';
	text += 'height="' + HEIGHT + 'px "';
	text += 'alt="' + ALT + '" />';
	text += '</div>';
	text += '</div>';
	text += '</div>';
	if ( WIDTH > 800) 
	{  text += '<div class="table-600px">';
	   text += '<div class="table-row">';
	   if (CleanCaption.length*8 > 600)
	   {  text += '<div class="table-cell-caption">';
	   } 
	   else
	   {  text += '<div class="table-cell-short-caption">';
	   }
	}
	else
	{  text += '<div class="table-75">';
	   text += '<div class="table-row">';
	   if (CleanCaption.length*10 > 0.75*WIDTH)
	   {  text += '<div class="table-cell-caption">';
	   } 
	   else
	   {  text += '<div class="table-cell-short-caption">';
	   }
	}
	text += '<p>';
	text += UncleanCaption;
	text += '</p>';
	text += '<p class="formula">';
	text += '<a href="javascript:parent.window.close()"';
	text += 'onclick="parent.window.close()">CLOSE THIS WINDOW</a>';
	text += '</p>';
	text += '</div>';
	text += '</div>';
	text += '</div>';
	text += '</div>';
	text += '</body></html>';
	ImageWindow = window.open("", WindowName, WindowProps);
	ImageWindow.document.open();
	ImageWindow.document.write(text);
	ImageWindow.document.close();
}

function IncludeCopyrightScreen() {
document.writeln('<p class="copyright-screen">');
document.writeln('Copyright &#169; 2005, The E.&nbsp;A.&nbsp;Obregon Foundation.'); 
document.writeln('All Rights Reserved.');
document.writeln('<br />');
document.writeln('This page is maintained by the ');
document.writeln('<a href="mailto:urrutia&#64;ucla.edu">Webmaster</a>, ');
document.writeln('and <a href="http://www.w3.org/Style/">CSS</a> makes it '); 
document.writeln('<a href="javascript:openPrinterFriendly()")>printer-friendly</a>.');
document.writeln('<br />');
document.writeln('Last update: 11 July 2006.');
document.writeln('</p>');
}


function IncludeCopyrightPrint() {
document.writeln('<p class="copyright-print">');
document.writeln('Copyright &#169; 2005, The E.&nbsp;A.&nbsp;Obregon Foundation.'); 
document.writeln('All Rights Reserved.');
document.writeln('<br />');
document.writeln('Last update: 11 July 2006.');
document.writeln('</p>');
}


function IncludeValidationIcons() {
document.writeln('<p>');
document.writeln('<a href="http://validator.w3.org/check/referer">');
document.writeln('   <img src="./valid-xhtml10.png"');
document.writeln('	alt="Valid XHTML 1.0!"');
document.writeln('	height="31px"');
document.writeln('	width="88px"');
document.writeln('        />');
document.writeln('</a>');
document.writeln('<br />');
document.writeln('<a href="http://jigsaw.w3.org/css-validator/">');
document.writeln('   <img src="./vcss.png"');
document.writeln('        alt="Valid CSS!"');
document.writeln('	height="31px"');
document.writeln('	width="88px"');
document.writeln('        />');
document.writeln('</a>');
document.writeln('</p>');
}


function IncludeFloatingMenu() 
{
  IsItMS();
  if (browser.isIE5x)
  {  IncludeMenuFixed();
  }
  else
  {  if (browser.isIE6x)
     {  IncludeMenuFixedIE6();
     }
     else
     {  IncludeMenuFloating();
     }
  }
}

function IncludeMenuFixed() {
document.writeln('  <div id="MenuContents">');
if ((window.location.pathname.indexOf("obregonstory")) > 0) 
{  document.writeln('    <ul class="menu">');
   document.writeln('      <li class="menu" id="first">');
   document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <span>Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</span>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('         <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('          <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('    </ul>');
}
else 
{ if ((window.location.pathname.indexOf("theforty")) > 0)
  {  document.writeln('    <ul class="menu">');
     document.writeln('      <li class="menu" id="first">');
     document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <span>The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</span>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('         <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('          <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</a>');
     document.writeln('      </li>');
     document.writeln('    </ul>');
  }
  else
  { if ((window.location.pathname.indexOf("cmhmonument")) > 0)
    {  document.writeln('    <ul class="menu">');
       document.writeln('      <li class="menu" id="first">');
       document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <span>The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</span>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('         <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('          <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</a>');
       document.writeln('      </li>');
       document.writeln('    </ul>');
    }
    else
    { if ((window.location.pathname.indexOf("mnmnt_siting")) > 0)
      {  document.writeln('    <ul class="menu">');
         document.writeln('      <li class="menu" id="first">');
         document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <span>The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</span>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('         <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('          <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</a>');
         document.writeln('      </li>');
         document.writeln('    </ul>');
      }
      else
      { if ((window.location.pathname.indexOf("thefoundation")) > 0)
        {  document.writeln('    <ul class="menu">');
           document.writeln('      <li class="menu" id="first">');
           document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</span>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('         <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('          <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</a>');
           document.writeln('      </li>');
           document.writeln('    </ul>');
        }
        else
        { if ((window.location.pathname.indexOf("endorsements")) > 0)
          {  document.writeln('    <ul class="menu">');
             document.writeln('      <li class="menu" id="first">');
             document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('         <span>Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</span>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('          <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</a>');
             document.writeln('      </li>');
             document.writeln('    </ul>');
           }
           else
           { if ((window.location.pathname.indexOf("sponsorship")) > 0)
             {  document.writeln('    <ul class="menu">');
                document.writeln('      <li class="menu" id="first">');
                document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</a>');
                document.writeln('      </li>');
                document.writeln('      <li class="menu">');
                document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</a>');
                document.writeln('      </li>');
                document.writeln('      <li class="menu">');
                document.writeln('        <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</a>');
                document.writeln('      </li>');
                document.writeln('      <li class="menu">');
                document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</a>');
                document.writeln('      </li>');
                document.writeln('      <li class="menu">');
                document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</a>');
                document.writeln('      </li>');
                document.writeln('      <li class="menu">');
                document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</a>');
                document.writeln('      </li>');
                document.writeln('      <li class="menu">');
                document.writeln('         <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</a>');
                document.writeln('      </li>');
                document.writeln('      <li class="menu">');
                document.writeln('          <span>Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</span>');
                document.writeln('      </li>');
                document.writeln('      <li class="menu">');
                document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</a>');
                document.writeln('      </li>');
                document.writeln('    </ul>');
             }
             else
             { if ((window.location.pathname.indexOf("events")) > 0)
               {  document.writeln('    <ul class="menu">');
                  document.writeln('      <li class="menu" id="first">');
                  document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('         <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('          <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <span>Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</span>');
                  document.writeln('      </li>');
                  document.writeln('    </ul>');
                }
                else
                {  document.writeln('    <ul class="menu">');
                   document.writeln('      <li class="menu" id="first">');
                   document.writeln('        <span>Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</span>');
                   document.writeln('      </li>');
                   document.writeln('      <li class="menu">');
                   document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</a>');
                   document.writeln('      </li>');
                   document.writeln('      <li class="menu">');
                   document.writeln('        <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</a>');
                   document.writeln('      </li>');
                   document.writeln('      <li class="menu">');
                   document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</a>');
                   document.writeln('      </li>');
                   document.writeln('      <li class="menu">');
                   document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</a>');
                   document.writeln('      </li>');
                   document.writeln('      <li class="menu">');
                   document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</a>');
                   document.writeln('      </li>');
                   document.writeln('      <li class="menu">');
                   document.writeln('         <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</a>');
                   document.writeln('      </li>');
                   document.writeln('      <li class="menu">');
                   document.writeln('          <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</a>');
                   document.writeln('      </li>');
                   document.writeln('      <li class="menu">');
                   document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</a>');
                   document.writeln('      </li>');
                   document.writeln('    </ul>');
                }
            }
          }
        }
      }
    }  
  }  
}
document.writeln('    <p>');
document.writeln('      If your browser were a modern CSS-compliant one, such as');
document.writeln('      <a href="http://www.mozilla.org/products/firefox/"');
document.writeln('         onclick="window.open(this.href);return false">Firefox</a>,');
document.writeln('      <a href="http://www.opera.com/"'); 
document.writeln('         onclick="window.open(this.href);return false">Opera</a>,');
document.writeln('      <a href="http://www.konqueror.org/"');
document.writeln('         onclick="window.open(this.href);return false">Konqueror</a>, or');
document.writeln('      <a href="http://www.apple.com/macosx/features/safari/"'); 
document.writeln('         onclick="window.open(this.href);return false">Safari</a>,');
document.writeln('      the above menu would be more compact and "float"');
document.writeln('      in place as you scroll through this page.');
document.writeln('      Please consider upgrading.');
document.writeln('    </p>');
document.writeln('    <p>');
document.writeln('      Hosted by:&nbsp;<a href="http://www.azteca.net"><img src="images/azteca.gif" />&nbsp;</a>');
document.writeln('    </p>');
document.writeln('  </div>');
}

function IncludeMenuFixedIE6() {
document.writeln('  <div id="MenuContents">');
if ((window.location.pathname.indexOf("obregonstory")) > 0) 
{  document.writeln('    <ul class="menu" id="DropMenu">');
   document.writeln('      <li class="menu" id="first">');
   document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
   document.writeln('        <ul class="menu">');
   document.writeln('          <li class="menu" id="first">');
   document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
   document.writeln('          </li>');
   document.writeln('          <li class="menu">');
   document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
   document.writeln('          </li>');
   document.writeln('        </ul>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <span>Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></span>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
   document.writeln('        <ul class="menu">');
   document.writeln('          <li class="menu" id="first">');
   document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
   document.writeln('          </li>');
   document.writeln('          <li class="menu">');
   document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
   document.writeln('          </li>');
   document.writeln('          <li class="menu">');
   document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
   document.writeln('          </li>');
   document.writeln('        </ul>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
   document.writeln('      </li>');
   document.writeln('    </ul>');
}
else 
{ if ((window.location.pathname.indexOf("theforty")) > 0)
  {  document.writeln('    <ul class="menu" id="DropMenu">');
     document.writeln('      <li class="menu" id="first">');
     document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
     document.writeln('        <ul class="menu">');
     document.writeln('          <li class="menu" id="first">');
     document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
     document.writeln('          </li>');
     document.writeln('          <li class="menu">');
     document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
     document.writeln('          </li>');
     document.writeln('        </ul>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <span>The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></span>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
     document.writeln('        <ul class="menu">');
     document.writeln('          <li class="menu" id="first">');
     document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
     document.writeln('          </li>');
     document.writeln('          <li class="menu">');
     document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
     document.writeln('          </li>');
     document.writeln('          <li class="menu">');
     document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
     document.writeln('          </li>');
     document.writeln('        </ul>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
     document.writeln('      </li>');
     document.writeln('    </ul>');
  }
  else
  { if ((window.location.pathname.indexOf("cmhmonument")) > 0)
    {  document.writeln('    <ul class="menu" id="DropMenu">');
       document.writeln('      <li class="menu" id="first">');
       document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <span>The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
       document.writeln('        <ul class="menuD">');
       document.writeln('          <li class="menu" id="first">');
       document.writeln('            <span>The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></span>');
       document.writeln('          </li>');
       document.writeln('          <li class="menu">');
       document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
       document.writeln('          </li>');
       document.writeln('        </ul>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
       document.writeln('        <ul class="menu">');
       document.writeln('          <li class="menu" id="first">');
       document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
       document.writeln('          </li>');
       document.writeln('          <li class="menu">');
       document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
       document.writeln('          </li>');
       document.writeln('          <li class="menu">');
       document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
       document.writeln('          </li>');
       document.writeln('        </ul>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
       document.writeln('      </li>');
       document.writeln('    </ul>');
    }
    else
    { if ((window.location.pathname.indexOf("mnmnt_siting")) > 0)
      {  document.writeln('    <ul class="menu" id="DropMenu">');
         document.writeln('      <li class="menu" id="first">');
         document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <span>The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
         document.writeln('        <ul class="menuD">');
         document.writeln('          <li class="menu" id="first">');
         document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
         document.writeln('          </li>');
         document.writeln('          <li class="menu">');
         document.writeln('            <span>The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></span>');
         document.writeln('          </li>');
         document.writeln('        </ul>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
         document.writeln('        <ul class="menu">');
         document.writeln('          <li class="menu" id="first">');
         document.writeln('            <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></span>');
         document.writeln('          </li>');
         document.writeln('          <li class="menu">');
         document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
         document.writeln('          </li>');
         document.writeln('          <li class="menu">');
         document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
         document.writeln('          </li>');
         document.writeln('        </ul>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
         document.writeln('      </li>');
         document.writeln('    </ul>');
      }
      else
      { if ((window.location.pathname.indexOf("thefoundation")) > 0)
        {  document.writeln('    <ul class="menu" id="DropMenu">');
           document.writeln('      <li class="menu" id="first">');
           document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
           document.writeln('        <ul class="menu">');
           document.writeln('          <li class="menu" id="first">');
           document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
           document.writeln('          </li>');
           document.writeln('          <li class="menu">');
           document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
           document.writeln('          </li>');
           document.writeln('        </ul>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
           document.writeln('        <ul class="menuD">');
           document.writeln('          <li class="menu" id="first">');
           document.writeln('            <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></span>');
           document.writeln('          </li>');
           document.writeln('          <li class="menu">');
           document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
           document.writeln('          </li>');
           document.writeln('          <li class="menu">');
           document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
           document.writeln('          </li>');
           document.writeln('        </ul>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
           document.writeln('      </li>');
           document.writeln('    </ul>');
        }
        else
        { if ((window.location.pathname.indexOf("endorsements")) > 0)
           { document.writeln('    <ul class="menu">');
             document.writeln('      <li class="menu" id="first">');
             document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
             document.writeln('        <ul class="menu">');
             document.writeln('          <li class="menu" id="first">');
             document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
             document.writeln('          </li>');
             document.writeln('          <li class="menu">');
             document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
             document.writeln('          </li>');
             document.writeln('        </ul>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
             document.writeln('        <ul class="menuD">');
             document.writeln('          <li class="menu" id="first">');
             document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
             document.writeln('          </li>');
             document.writeln('          <li class="menu">');
             document.writeln('            <span>Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></span>');
             document.writeln('          </li>');
             document.writeln('          <li class="menu">');
             document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
             document.writeln('          </li>');
             document.writeln('        </ul>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
             document.writeln('      </li>');
             document.writeln('    </ul>');
           }
           else
          { if ((window.location.pathname.indexOf("sponsorship")) > 0)
            {  document.writeln('    <ul class="menu" id="DropMenu">');
               document.writeln('      <li class="menu" id="first">');
               document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
               document.writeln('        <ul class="menu">');
               document.writeln('          <li class="menu" id="first">');
               document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
               document.writeln('          </li>');
               document.writeln('          <li class="menu">');
               document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
               document.writeln('          </li>');
               document.writeln('        </ul>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
               document.writeln('        <ul class="menuD">');
               document.writeln('          <li class="menu" id="first">');
               document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
               document.writeln('          </li>');
               document.writeln('          <li class="menu">');
               document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
               document.writeln('          </li>');
               document.writeln('          <li class="menu">');
               document.writeln('            <span>Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></span>');
               document.writeln('          </li>');
               document.writeln('        </ul>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
               document.writeln('      </li>');
               document.writeln('    </ul>');
             }
             else
             { if ((window.location.pathname.indexOf("events")) > 0)
               {  document.writeln('    <ul class="menu" id="DropMenu">');
                  document.writeln('      <li class="menu" id="first">');
                  document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
                  document.writeln('        <ul class="menu">');
                  document.writeln('          <li class="menu" id="first">');
                  document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('        </ul>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
                  document.writeln('        <ul class="menu">');
                  document.writeln('          <li class="menu" id="first">');
                  document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('        </ul>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <span>Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></span>');
                  document.writeln('      </li>');
                  document.writeln('    </ul>');
                }
                else
                { document.writeln('    <ul class="menu">');
                  document.writeln('      <li class="menu" id="first">');
                  document.writeln('        <span>Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></span>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
                  document.writeln('        <ul class="menu">');
                  document.writeln('          <li class="menu" id="first">');
                  document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('        </ul>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
                  document.writeln('        <ul class="menu">');
                  document.writeln('          <li class="menu" id="first">');
                  document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('        </ul>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('    </ul>');                
              }
            }
          }
        }
      }
    }  
  }  
}
document.writeln('    <p class="menu">');
document.writeln('      If your browser were a modern CSS-compliant one, such as');
document.writeln('      <a href="http://www.mozilla.org/products/firefox/"');
document.writeln('         onclick="window.open(this.href);return false">Firefox</a>,');
document.writeln('      <a href="http://www.opera.com/"'); 
document.writeln('         onclick="window.open(this.href);return false">Opera</a>,');
document.writeln('      <a href="http://www.konqueror.org/"');
document.writeln('         onclick="window.open(this.href);return false">Konqueror</a>, or');
document.writeln('      <a href="http://www.apple.com/macosx/features/safari/"'); 
document.writeln('         onclick="window.open(this.href);return false">Safari</a>,');
document.writeln('      the above menu would be more compact and "float"');
document.writeln('      in place as you scroll through this page.');
document.writeln('      Please consider upgrading.');
document.writeln('    </p>');
document.writeln('    <p class="menu">');
document.writeln('      Hosted by:&nbsp;<a href="http://www.azteca.net"><img src="images/azteca.gif" />&nbsp;</a>');
document.writeln('    </p>');
document.writeln('  </div>');
}


function IncludeMenuFloating() {
document.writeln('<div class="Menu">');
document.writeln('  <div id="MenuContents">');
if ((window.location.pathname.indexOf("obregonstory")) > 0) 
{  document.writeln('    <ul class="menu">');
   document.writeln('      <li class="menu" id="first">');
   document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
   document.writeln('        <ul class="menu">');
   document.writeln('          <li class="menu" id="first">');
   document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
   document.writeln('          </li>');
   document.writeln('          <li class="menu">');
   document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
   document.writeln('          </li>');
   document.writeln('        </ul>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <span>Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></span>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
   document.writeln('        <ul class="menu">');
   document.writeln('          <li class="menu" id="first">');
   document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
   document.writeln('          </li>');
   document.writeln('          <li class="menu">');
   document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
   document.writeln('          </li>');
   document.writeln('          <li class="menu">');
   document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
   document.writeln('          </li>');
   document.writeln('        </ul>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
   document.writeln('      </li>');
   document.writeln('    </ul>');
}
else 
{ if ((window.location.pathname.indexOf("theforty")) > 0)
  {  document.writeln('    <ul class="menu">');
     document.writeln('      <li class="menu" id="first">');
     document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
     document.writeln('        <ul class="menu">');
     document.writeln('          <li class="menu" id="first">');
     document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
     document.writeln('          </li>');
     document.writeln('          <li class="menu">');
     document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
     document.writeln('          </li>');
     document.writeln('        </ul>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <span>The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></span>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
     document.writeln('        <ul class="menu">');
     document.writeln('          <li class="menu" id="first">');
     document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
     document.writeln('          </li>');
     document.writeln('          <li class="menu">');
     document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
     document.writeln('          </li>');
     document.writeln('          <li class="menu">');
     document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
     document.writeln('          </li>');
     document.writeln('        </ul>');
     document.writeln('      </li>');
     document.writeln('      <li class="menu">');
     document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
     document.writeln('      </li>');
     document.writeln('    </ul>');
  }
  else
  { if ((window.location.pathname.indexOf("cmhmonument")) > 0)
    {  document.writeln('    <ul class="menu">');
       document.writeln('      <li class="menu" id="first">');
       document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <span>The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
       document.writeln('        <ul class="menuD">');
       document.writeln('          <li class="menu" id="first">');
       document.writeln('            <span>The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></span>');
       document.writeln('          </li>');
       document.writeln('          <li class="menu">');
       document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
       document.writeln('          </li>');
       document.writeln('        </ul>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
       document.writeln('        <ul class="menu">');
       document.writeln('          <li class="menu" id="first">');
       document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
       document.writeln('          </li>');
       document.writeln('          <li class="menu">');
       document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
       document.writeln('          </li>');
       document.writeln('          <li class="menu">');
       document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
       document.writeln('          </li>');
       document.writeln('        </ul>');
       document.writeln('      </li>');
       document.writeln('      <li class="menu">');
       document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
       document.writeln('      </li>');
       document.writeln('    </ul>');
    }
    else
    { if ((window.location.pathname.indexOf("mnmnt_siting")) > 0)
      {  document.writeln('    <ul class="menu">');
         document.writeln('      <li class="menu" id="first">');
         document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <span>The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
         document.writeln('        <ul class="menuD">');
         document.writeln('          <li class="menu" id="first">');
         document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
         document.writeln('          </li>');
         document.writeln('          <li class="menu">');
         document.writeln('            <span>The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></span>');
         document.writeln('          </li>');
         document.writeln('        </ul>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
         document.writeln('        <ul class="menu">');
         document.writeln('          <li class="menu" id="first">');
         document.writeln('            <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></span>');
         document.writeln('          </li>');
         document.writeln('          <li class="menu">');
         document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
         document.writeln('          </li>');
         document.writeln('          <li class="menu">');
         document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
         document.writeln('          </li>');
         document.writeln('        </ul>');
         document.writeln('      </li>');
         document.writeln('      <li class="menu">');
         document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
         document.writeln('      </li>');
         document.writeln('    </ul>');
      }
      else
      { if ((window.location.pathname.indexOf("thefoundation")) > 0)
        {  document.writeln('    <ul class="menu">');
           document.writeln('      <li class="menu" id="first">');
           document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
           document.writeln('        <ul class="menu">');
           document.writeln('          <li class="menu" id="first">');
           document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
           document.writeln('          </li>');
           document.writeln('          <li class="menu">');
           document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
           document.writeln('          </li>');
           document.writeln('        </ul>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
           document.writeln('        <ul class="menuD">');
           document.writeln('          <li class="menu" id="first">');
           document.writeln('            <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></span>');
           document.writeln('          </li>');
           document.writeln('          <li class="menu">');
           document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
           document.writeln('          </li>');
           document.writeln('          <li class="menu">');
           document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
           document.writeln('          </li>');
           document.writeln('        </ul>');
           document.writeln('      </li>');
           document.writeln('      <li class="menu">');
           document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
           document.writeln('      </li>');
           document.writeln('    </ul>');
        }
        else
        { if ((window.location.pathname.indexOf("endorsements")) > 0)
           { document.writeln('    <ul class="menu">');
             document.writeln('      <li class="menu" id="first">');
             document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
             document.writeln('        <ul class="menu">');
             document.writeln('          <li class="menu" id="first">');
             document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
             document.writeln('          </li>');
             document.writeln('          <li class="menu">');
             document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
             document.writeln('          </li>');
             document.writeln('        </ul>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
             document.writeln('        <ul class="menuD">');
             document.writeln('          <li class="menu" id="first">');
             document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
             document.writeln('          </li>');
             document.writeln('          <li class="menu">');
             document.writeln('            <span>Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></span>');
             document.writeln('          </li>');
             document.writeln('          <li class="menu">');
             document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
             document.writeln('          </li>');
             document.writeln('        </ul>');
             document.writeln('      </li>');
             document.writeln('      <li class="menu">');
             document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
             document.writeln('      </li>');
             document.writeln('    </ul>');
           }
           else
          { if ((window.location.pathname.indexOf("sponsorship")) > 0)
            {  document.writeln('    <ul class="menu">');
               document.writeln('      <li class="menu" id="first">');
               document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
               document.writeln('        <ul class="menu">');
               document.writeln('          <li class="menu" id="first">');
               document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
               document.writeln('          </li>');
               document.writeln('          <li class="menu">');
               document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
               document.writeln('          </li>');
               document.writeln('        </ul>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <span>The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></span>');
               document.writeln('        <ul class="menuD">');
               document.writeln('          <li class="menu" id="first">');
               document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
               document.writeln('          </li>');
               document.writeln('          <li class="menu">');
               document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
               document.writeln('          </li>');
               document.writeln('          <li class="menu">');
               document.writeln('            <span>Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></span>');
               document.writeln('          </li>');
               document.writeln('        </ul>');
               document.writeln('      </li>');
               document.writeln('      <li class="menu">');
               document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
               document.writeln('      </li>');
               document.writeln('    </ul>');
             }
             else
             { if ((window.location.pathname.indexOf("events")) > 0)
               {  document.writeln('    <ul class="menu">');
                  document.writeln('      <li class="menu" id="first">');
                  document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
                  document.writeln('        <ul class="menu">');
                  document.writeln('          <li class="menu" id="first">');
                  document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('        </ul>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
                  document.writeln('        <ul class="menu">');
                  document.writeln('          <li class="menu" id="first">');
                  document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('        </ul>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <span>Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></span>');
                  document.writeln('      </li>');
                  document.writeln('    </ul>');
                }
                else
                { document.writeln('    <ul class="menu">');
                  document.writeln('      <li class="menu" id="first">');
                  document.writeln('        <span>Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></span>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
                  document.writeln('        <ul class="menu">');
                  document.writeln('          <li class="menu" id="first">');
                  document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('        </ul>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
                  document.writeln('        <ul class="menu">');
                  document.writeln('          <li class="menu" id="first">');
                  document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('          <li class="menu">');
                  document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
                  document.writeln('          </li>');
                  document.writeln('        </ul>');
                  document.writeln('      </li>');
                  document.writeln('      <li class="menu">');
                  document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
                  document.writeln('      </li>');
                  document.writeln('    </ul>');                
              }
            }
          }
        }
      }
    }  
  }  
}
document.writeln('    <p class="menu">');
document.writeln('      Hosted by:&nbsp;<a href="http://www.azteca.net"><img src="images/azteca.gif" />&nbsp;</a>');
document.writeln('    </p>');
document.writeln('  </div>');
document.writeln('</div>');
}


function IncludeFloatingMenuAll() 
{
  IsItMS();
  if (browser.isIE5x)
  {  IncludeMenuFixedAll();
  }
  else
  {  if (browser.IE6x)
     {  IncludeMenuFloatingAll();
     }
     else
     {  IncludeMenuFloatingAll();
     }
  }
}

function IncludeMenuFixedAll() 
{  document.writeln('  <div id="MenuContents">');
   document.writeln('    <ul class="menu">');
   document.writeln('      <li class="menu" id="first">');
   document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('         <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('          <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('      <li class="menu">');
   document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;&nbsp;</a>');
   document.writeln('      </li>');
   document.writeln('    </ul>');
   document.writeln('    <p>');
   document.writeln('      If your browser were a modern CSS-compliant one, such as');
   document.writeln('      <a href="http://www.mozilla.org/products/firefox/"');
   document.writeln('         onclick="window.open(this.href);return false">Firefox</a>,');
   document.writeln('      <a href="http://www.opera.com/"'); 
   document.writeln('         onclick="window.open(this.href);return false">Opera</a>,');
   document.writeln('      <a href="http://www.konqueror.org/"');
   document.writeln('         onclick="window.open(this.href);return false">Konqueror</a>, or');
   document.writeln('      <a href="http://www.apple.com/macosx/features/safari/"'); 
   document.writeln('         onclick="window.open(this.href);return false">Safari</a>,');
   document.writeln('      the above menu would be more compact and "float"');
   document.writeln('      in place as you scroll through this page.');
   document.writeln('      Please consider upgrading.');
   document.writeln('    </p>');
   document.writeln('    <p class="menu">');
   document.writeln('      Hosted by:&nbsp;<a href="http://www.azteca.net"><img src="images/azteca.gif" />&nbsp;</a>');
   document.writeln('    </p>');
   document.writeln('  </div>');
}


function IncludeMenuFloatingAll() {
document.writeln('<div class="Menu">');
document.writeln('  <div id="MenuContents">');
document.writeln('    <ul class="menu" id="DropMenu">');
document.writeln('      <li class="menu" id="first">');
document.writeln('        <a href="indexHome.html">Home&nbsp;&nbsp;<img src="images/icons/HomeIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
document.writeln('      </li>');
document.writeln('      <li class="menu">');
document.writeln('        <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
document.writeln('        <ul class="menu">');
document.writeln('          <li class="menu" id="first">');
document.writeln('            <a href="cmhmonument/index.html">The Monument&nbsp;&nbsp;<img src="images/icons/MonumentIcon.png" /></a>');
document.writeln('          </li>');
document.writeln('          <li class="menu">');
document.writeln('            <a href="mnmnt_siting/index.html">The Site&nbsp;&nbsp;<img src="images/icons/SiteIcon.gif" /></a>');
document.writeln('          </li>');
document.writeln('        </ul>');
document.writeln('      </li>');
document.writeln('      <li class="menu">');
document.writeln('        <a href="obregonstory/index.html">Obregon\'s Story&nbsp;&nbsp;<img src="images/icons/ObregonStoryIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
document.writeln('      </li>');
document.writeln('      <li class="menu">');
document.writeln('        <a href="theforty/index.html">The Forty&nbsp;&nbsp;<img src="images/icons/MH1icon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
document.writeln('      </li>');
document.writeln('      <li class="menu">');
document.writeln('        <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" />&nbsp;<img src="images/arrowhead.gif" /></a>');
document.writeln('        <ul class="menu">');
document.writeln('          <li class="menu" id="first">');
document.writeln('            <a href="thefoundation/index.html">The Foundation&nbsp;&nbsp;<img src="images/icons/FoundMedalIcon.png" /></a>');
document.writeln('          </li>');
document.writeln('          <li class="menu">');
document.writeln('            <a href="endorsements/index.html">Endorsements&nbsp;&nbsp;<img src="images/icons/EndorsementIcon.gif" /></a>');
document.writeln('          </li>');
document.writeln('          <li class="menu">');
document.writeln('            <a href="sponsorship/index.html">Sponsorship&nbsp;&nbsp;<img src="images/icons/SponsorshipIcon.gif" /></a>');
document.writeln('          </li>');
document.writeln('        </ul>');
document.writeln('      </li>');
document.writeln('      <li class="menu">');
document.writeln('        <a href="events/index.html">Events Calendar&nbsp;&nbsp;<img src="images/icons/EventsIcon.gif" />&nbsp;<img src="images/noarrowhead.gif" /></a>');
document.writeln('      </li>');
document.writeln('    </ul>');
document.writeln('    <p class="menu">');
document.writeln('      Hosted by:&nbsp;<a href="http://www.azteca.net"><img src="images/azteca.gif" />&nbsp;</a>');
document.writeln('    </p>');
document.writeln('  </div>');
document.writeln('</div>');
}
/* <a href="http://www.w3.org/TR/REC-CSS2/cover.html"> */


function IncludeFloatingBottomImage() {
document.writeln('<div class="BottomImage">');
document.writeln('<div class="BottomImageContents">');
document.writeln('<p class="bottomimage">');
document.writeln('<img src ="images/AllServicesEmblems.gif"');
document.writeln('     alt="Emblems of all services');
document.writeln('     height="120px"');
document.writeln('     width="600px"');
document.writeln('/>');
document.writeln('</p>');
document.writeln('</div>');
document.writeln('</div>');
}

// cmhHover
// function based on Son of Sucker Fish
// (http://www.htmldog.com/articles/suckerfish/hover/)
// originally coded by Patrick Griffiths (http://www.htmldog.com/ptg/)
// and Dan Webba (http://www.danwebb.net/)
function cmhHover() 
{
	var cmhEls = document.getElementById("MenuContents").getElementsByTagName("LI");
	for (var i=0; i<cmhEls.length; i++) {
		cmhEls[i].onmouseover=function() {
			this.className+=" cmhhover";
		}
		cmhEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" cmhhover\\b"), "");
		}
	}
}

// IsItMS
// function based on Browser Detect  v2.1.6
// (http://www.dithered.com/javascript/browser_detect/index.html)
// originally coded by Chris Nott (chris[at]dithered[dot]com)
function IsItMS() 
{
   var ua = navigator.userAgent.toLowerCase(); 

   this.isOpera       = (ua.indexOf('opera') != -1); 
   this.isIE          = (ua.indexOf('msie') != -1 && !this.isOpera && (ua.indexOf('webtv') == -1) ); 
   
   // browser version
   this.versionMinor = parseFloat(navigator.appVersion); 
   
   // correct version number
   if (this.isIE && this.versionMinor >= 4) {
      this.versionMinor = parseFloat( ua.substring( ua.indexOf('msie ') + 5 ) );
   }
   
   this.versionMajor = parseInt(this.versionMinor); 
   
   this.isIE5x = (this.isIE && this.versionMajor == 5);
   this.isIE6x = (this.isIE && this.versionMajor == 6);   
}
var browser = new IsItMS();

function IdentifyBrowser()
{
  IsItMS();
  if(browser.isIE5x)
  { document.writeln('<link   rel="stylesheet" ');
    document.writeln('        media="all" ');
    document.writeln('        type="text/css" ');
    document.writeln('        href="CSSScripts/FloatingMenu-IE5.css" /> ');
  }
  else
  { if(browser.isIE6x)
    { document.writeln('<link   rel="stylesheet" ');
      document.writeln('        media="all" ');
      document.writeln('        type="text/css" ');
      document.writeln('        href="CSSScripts/FloatingMenu-IE6.css" /> ');
      if (window.attachEvent) window.attachEvent("onload", cmhHover);
    }
    else
    { document.writeln('<link   rel="stylesheet" ');
      document.writeln('        media="all" ');
      document.writeln('        type="text/css" ');
      document.writeln('        href="CSSScripts/FloatingMenu.css" /> ');
    }
  }
}
  

 
    