function imprimir() {
	print();
	return;
}

function aumentartexto() {
	obj=document.getElementById('contenido');
	if (obj.style.fontSize=="") {
		obj.style.fontSize="100%";
	}
	actual=parseInt(obj.style.fontSize);
	if(actual<130) {
		incremento=10;
		valor=actual+incremento;
		obj.style.fontSize=valor+"%"
	}
}

function reducirtexto() {
	obj=document.getElementById('contenido');
	if (obj.style.fontSize=="") {
		obj.style.fontSize="100%";
	}
	actual=parseInt(obj.style.fontSize);
	if(actual>80) {
		incremento=10;
		valor=actual-incremento;
		obj.style.fontSize=valor+"%"
	}
}

	function show(pict_nr) {
		document.imagen.src = pict[pict_nr];
		descrip.value = txt[pict_nr];
		value = pict_nr;}
	function anterior() {
		value=value-1;
		if(value<0) value = images - 1;
		show(value);}
	function siguiente() {
		value++;
		if (value>=images) value = 0;
		show(value);}