function zonaOn(sZona){
imagen=eval("document.images['"+sZona+"']");
cambiaImg(imagen);
}
function zonaOff(sZona){
imagen=eval("document.images['"+sZona+"']");
cambiaImg(imagen);
}
function cambiaImg(imname) {
img=imname.src;
if (img.indexOf("on")!=-1) {
re = /on/gi;
str =img;
newstr=str.replace(re, "off");
imname.src=newstr;
}
else {
re = /off/gi;
str =img;
newstr=str.replace(re, "on");
imname.src=newstr;
}
}