a ver si es esto lo que quieres
Cita: <html>
<head>
<script type="text/javascript">
var valor='';
function cambiarImagen(img) {
alert(img + ' - ' + valor);
document.getElementById('boton').style.display = valor == 1 ? 'block' : 'none';
}
</script>
</head>
<body>
<input type="button" id="boton" value="se muestra" style="display: none" />
<a href="#" onclick="valor2='1'; cambiarImagen('una imagen'); return false;">nueva imagen</a>
</body>
</html>