<!--
function show(id) {
  var ids = new Array("butler","christensen","creel", "davis", "gary", "harris", 
                      "hemmerling","wjameson", "kimball", "mcneely", "middaugh",
                      "kmorris","wmorris", "solitario", "walsh", "awarner", "sbaxter",
                      "melancon","robinette","boone", "storms", "houglum", "caminita", "masche","tbernard", "llsu");
  document.getElementById('fdefault').style.display = "none";
  for(var count = 0;count<ids.length;count++) {
    if(document.getElementById(ids[count])&&(id!=ids[count])){
    document.getElementById('f'+ids[count]).style.display = "none";
    }
  }
  if(document.getElementById(id)) {
    document.getElementById('f'+id).style.display = "";
  }
}
function hide(id) {
  var ids = new Array("butler","christensen","creel", "davis", "gary", "harris",
                      "hemmerling","wjameson", "kimball", "mcneely", "middaugh",
                      "kmorris","wmorris", "solitario", "walsh", "awarner", "sbaxter",
                      "melancon","robinette","boone", "storms", "houglum", "caminita", "masche","tbernard", "llsu");
  for(var count = 0;count<ids.length;count++) {
    if(document.getElementById(ids[count])&&(id == ids[count])){
      document.getElementById('f'+ids[count]).style.display = "none";
    }
  }
}
//-->

