// David Trewern Design JAVASCRIPT - Copyright © 2002 David Trewern Design

// ************* MENU MOUSE OVER SCRIPT ***********
function BturnOn(imageName,swapImg) {
  if (document.images) { document [imageName + swapImg].src = eval("b" + imageName + "1.src"); }
}

function BturnOff(imageName,swapImg) {
  if (document.images) { document [imageName + swapImg].src = eval("b" + imageName + "0.src"); }
}

if (document.images) {
  NAVarr = new Array("past_exh","cur_exh","fut_exh","pot_cat","high","brow","indetail","ser","col","asia","res","edu","collectionprojects");
  for (var NAVitem in NAVarr) {
    for (var NAVicount=0; NAVicount < 2; NAVicount++) {
      eval("b" + NAVarr[NAVitem] + NAVicount + " = new Image()");
      eval("b" + NAVarr[NAVitem] +  NAVicount + ".src = 'images/swap_" + NAVarr[NAVitem] + NAVicount + ".gif'");
    }
  }
}



//  -->

function openNewWindow(URLtoOpen, windowName, windowFeatures) { newWindow=window.open(URLtoOpen, windowName, windowFeatures); }

//  -->


<!-- Begin
function formHandler1(form1){
var URL = document.form1.site1.options[document.form1.site1.selectedIndex].value;
parent.location.href = URL;
}
// End -->


