<!--

if (document.images) {
  var autoon = new Image();
  autoon.src = "/tlc/images/autoon.gif";
  var autooff = new Image();
  autooff.src = "/tlc/images/autooff.gif";
    
  var schoolson = new Image();
  schoolson.src = "/tlc/images/schoolson.gif";
  var schoolsoff = new Image();
  schoolsoff.src = "/tlc/images/schoolsoff.gif"; 
    
  var catalogingon = new Image();
  catalogingon.src = "/tlc/images/catalogingon.gif";
  var catalogingoff = new Image();
  catalogingoff.src = "/tlc/images/catalogingoff.gif"; 
}

function act(imgName) {
  if (document.images) 
    document[imgName].src = eval(imgName + "on.src");
}

function inact(imgName) {
  if (document.images)
    document[imgName].src = eval(imgName + "off.src");
}


//-->
