<!--- 

if (document.images) {
  
  image3on = new Image();
  image3on.src = "img/AT_OVER.gif";
      
  image3off = new Image();
  image3off.src = "img/AT.gif";
  
 }

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}



//--->

