function turnOn(imageName, imageNum) {
  if (document.images) {
    document[imageName].src = eval(imageName + imageNum + "on.src");
  }
}

function turnOff(imageName, imageNum) {
  if (document.images) {
    document[imageName].src = eval(imageName + imageNum + "off.src");
  }
}


function openWindow(url,name,features) {
  newWin = window.open(url,name,features);
  newWin.focus();
}

function goTW(){
    var URL = document.pathfinder.site.options[document.pathfinder.site.selectedIndex].value;
    window.location.href = URL;
}
