viene a ser casi que lo mismo. sólo que ahora has de implicar css y en lugar de modificar el atributo src has de modificar la propiedad background
Cita: #capa {
background: url('1.gif');
background-repeat: no-repeat;
}
function fnc(img) {
document.getElementById('capa').style.background = "url('"+img+".gif') no-repeat";
}
<a href="#" name="1" onclick="fnc(this.name)";>Imagen 1</a>
<a href="#" name="2" onclick="fnc(this.name)";>Imagen 2</a>
<a href="#" name="3" onclick="fnc(this.name)";>Imagen 3</a>
<a href="#" name="4" onclick="fnc(this.name)";>Imagen 4</a>
<a href="#" name="5" onclick="fnc(this.name)";>Imagen 5</a>
<div id="capa">
</div>