Hola:
Podrías usar el id como parámetro...
Código Javascript
:
Ver originalfunction big_img(imagen){
var img=document.getElementById(imagen);
if(img.style.maxWidth=="400px"){
img.style.maxWidth="120px";
}else{
img.style.maxWidth="400px";
}
y la llamada:
Saludos