<!--

function aumenta_tamanio(nombre_imagen,cuanto) {
       var ancho, alto;

        I=document.getElementById(nombre_imagen);
        ancho=I.width;
       alto=I.height;
      I.width=cuanto*ancho;
        I.height=cuanto*alto;        }

function disminuye_tamanio(nombre_imagen,cuanto) {
                I=document.getElementById(nombre_imagen);
               I.width=I.width/cuanto;
               I.height=I.height/cuanto;
      }
function ajustar() 
	{
		document.images['fondo1'].width = document.getElementById('tabla').offsetWidth;
		document.images['fondo1'].height = document.getElementById('tabla').offsetHeight;
	} 

//-->
