// Top Navs
   
btn01on = new Image();
  btn01on.src = "images/btn_churchillEval_over.jpg";
btn01off = new Image();
  btn01off.src = "images/btn_churchillEval.jpg";
   
btn02on = new Image();
  btn02on.src = "images/btn_churchillMed_over.jpg";
btn02off = new Image();
  btn02off.src = "images/btn_churchillMed.jpg";


function stopError() {
	return true;
}
window.onerror=stopError;

function On(imgName) {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
        }
function Off(imgName) {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
        }

