<!--

function rollover(imgName){
theImg=document.getElementById(imgName);
theImg.setAttribute("src", eval(imgName + 'off.src'));
}

function rolloff(imgName){
theImg=document.getElementById(imgName);
theImg.setAttribute("src", eval(imgName + 'on.src'));
}

//-->