function offall() {
  if ( document.getElementById ) {
    var allList= new Array ( "db", "ss", "cgi", "js", "flash","des" );
    for (var item in allList ) {
       var headID = allList[item] + "title";
       var secID = allList[item] + "info";
       document.getElementById(secID).style.display = "none";
     }
  }
}
function setup() {
  if ( document.getElementById ) {
     offall();
//     document.getElementById('instruction').innerHTML = "(Roll over list at left for suggestions.)";
  }

}

function showit(Section) {
  if (document.getElementById ) {
    document.getElementById('welcome').style.display = "none";
    offall();
    var secID = Section + "info";
    var headID = Section + "title";
    document.getElementById(secID).style.display = "block";
  } // endif
}

function gotoit(Section) {
  if (document.getElementById ) { document.getElementById('welcome').style.display = "none";
    offall();
    var secID = Section + "info";
    var headID = Section + "title";
    document.getElementById(secID).style.display = "block";
  } else {
    var mygoto = "#"+Section;
    location=mygoto;
  } // endif
}

