function tamanytext(tipus){
	
	obj=document.getElementById("contingut");
	if (obj.style.fontSize==""){
		obj.style.fontSize="100%";
	}
	actual=parseInt(obj.style.fontSize);
	increment=20;
	
	if(tipus=="normal")	obj.style.fontSize="100%";
	
	if(tipus=="augmentar"){
		valor=actual+increment;
		obj.style.fontSize=valor+"%"
	}
	if(tipus=="disminuir"){
		valor=actual-increment;
		obj.style.fontSize=valor+"%"
	}
}