<!--
if (document.images) {

        //Previous
  image1on = new Image();
  image1on.src = "/i/z/uk/sp/2006/zd5compromo/bt_begin_on.gif";

  image1off = new Image();
  image1off.src = "/i/z/uk/sp/2006/zd5compromo/bt_begin_off.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");
  }
}
// -->
