function redimensionar (imagen,porcentaje)
{
	if((porcentaje<=0)||(porcentaje>1)) porcentaje=1;
			
	imagen.width=imagen.width*porcentaje;
}