//  LabMenu.js
//
//  JavaScript write commands to output cmoreDS Lab Menu

function WriteMenu() {

  document.write('<form class="f1" action="#">');
  document.write('  <select name="references" onChange = "location.href = this.options[selectedIndex].value">');
  document.write('    <optgroup>');
  document.write('      <option class="o1" value="#" selected>Select a location ...');
  document.write('      <option class="o2" value="#">&nbsp;&nbsp;&nbsp;Overview');
  document.write('      <option class="o1" value="/lab/intro.html">&nbsp;&nbsp;&nbsp;» General Information');
  document.write('      <option class="o1" value="/lab/personnel.html">&nbsp;&nbsp;&nbsp;» Personnel');
  document.write('      <option class="o1" value="/lab/projects.html">&nbsp;&nbsp;&nbsp;» Present &amp; Past Research Projects');
  document.write('      <option class="o1" value="/posters/posters.html">&nbsp;&nbsp;&nbsp;» Posters');
  document.write('      <option class="o2" value="/hot/hot_jgofs.html">» HOT');
  document.write('      <option class="o1" value="/hot/hot-dogs/interface.html">&nbsp;&nbsp;&nbsp;» HOT-DOGS');
  document.write('      <option class="o1" value="/hot/hale-aloha/ha.html">&nbsp;&nbsp;&nbsp;» HALE-ALOHA');
  document.write('      <option class="o1" value="/hot/seagliders/index.html">&nbsp;&nbsp;&nbsp;» ALOHA SeaGliders');
  document.write('      <option class="o1" value="/hot/aloha-climax/ac.html">&nbsp;&nbsp;&nbsp;» ALOHA-CLIMAX');
  document.write('      <option class="o2" value="http://cmore.soest.hawaii.edu">» C-MORE');
  document.write('      <option class="o1" value="/cmore/cmore.html">&nbsp;&nbsp;&nbsp;» Team');
  document.write('      <option class="o1" value="/cmorehale/index.html">&nbsp;&nbsp;&nbsp;» C-MORE Hale');
  document.write('      <option class="o3" value="#">&nbsp;&nbsp;&nbsp;» cmoreDS');
  document.write('      <option class="o1" value="/cmorebula/cmorebula.html">&nbsp;&nbsp;&nbsp;» CMORE-BULA');
  document.write('      <option class="o1" value="/cmorebloomer/cmorebloomer.html">&nbsp;&nbsp;&nbsp;» CMORE-BLOOMER');
  document.write('      <option class="o1" value="/cmoreoperex/operex.html">&nbsp;&nbsp;&nbsp;» CMORE-OPEREX');
  document.write('      <option class="o1" value="/cmoresuperhicat/superhicat.html">&nbsp;&nbsp;&nbsp;» CMORE-SUPER-HI-CAT');
  document.write('      <option class="o2" value="#">&nbsp;&nbsp;&nbsp;OPPEX');
  document.write('      <option class="o1" value="/oppex/index.html">&nbsp;&nbsp;&nbsp;» Initial Deployment');
  document.write('      <option class="o2" value="#">&nbsp;&nbsp;&nbsp;Agouron');
  document.write('      <option class="o1" value="http://cmore.soest.hawaii.edu/agouron/2009/index.htm">&nbsp;&nbsp;&nbsp;» 2009 Summer Course');
  document.write('      <option class="o1" value="http://cmore.soest.hawaii.edu/agouron/2008/index.htm">&nbsp;&nbsp;&nbsp;» 2008 Summer Course');
  document.write('      <option class="o1" value="http://cmore.soest.hawaii.edu/agouron/2007/index.htm">&nbsp;&nbsp;&nbsp;» 2007 Summer Course');
  document.write('      <option class="o1" value="/agouroninstitutecourse/index.html">&nbsp;&nbsp;&nbsp;» 2006 Summer Course');
  document.write('      <option class="o2" value="#">&nbsp;&nbsp;&nbsp;COLD');
  document.write('      <option class="o1" value="/lter/lter.html">&nbsp;&nbsp;&nbsp;» LTER');
  document.write('      <option class="o1" value="/racer/racer.html">&nbsp;&nbsp;&nbsp;» RACER');
  document.write('      <option class="o1" value="/santacls/santa.html">&nbsp;&nbsp;&nbsp;» SANTA CLA&micro;S');
  document.write('      <option class="o2" value="#">&nbsp;&nbsp;&nbsp;Other Projects');
  document.write('      <option class="o1" value="http://biology.usc.edu/bc/">&nbsp;&nbsp;&nbsp;» Biocomplexity');
  document.write('      <option class="o1" value="/cookbook/cookbook.html">&nbsp;&nbsp;&nbsp;» COOK-BOOK');
  document.write('      <option class="o1" value="/beachbash/beachbash.html">&nbsp;&nbsp;&nbsp;» BEACH-BASH');
  document.write('      <option class="o1" value="http://www.opl.ucsb.edu/mosean.html">&nbsp;&nbsp;&nbsp;» MOSEAN');
  document.write('      <option class="o2" value="#">&nbsp;&nbsp;&nbsp;Miscellaneous');
  document.write('      <option class="o1" value="/flowcytometry/index.html">&nbsp;&nbsp;&nbsp;» Influx Mariner User\'s Forum');
  document.write('      <option class="o1" value="/pduke/polarduke.html">&nbsp;&nbsp;&nbsp;» R/V Polar Duke Farwell Tribute');
  document.write('      <option class="o1" value="/beachcam/beachcam.html">&nbsp;&nbsp;&nbsp;» BEACH Cam');
  document.write('      <option class="o1" value="/operations/oplog.html">&nbsp;&nbsp;&nbsp;» Operation\'s Log');
  document.write('    </optgroup>');
  document.write('  </select>');
  document.write('</form>');

}
