function zoomText(tipo){obj=document.getElementById("description");if(obj.style.fontSize==""){obj.style.fontSize="100%";}
actual=parseInt(obj.style.fontSize);incremento=10;if(tipo=="normal"){obj.style.fontSize="100%"}
if(tipo=="aumentar"){valor=actual+incremento;obj.style.fontSize=valor+"%"}
if(tipo=="disminuir"){valor=actual-incremento;obj.style.fontSize=valor+"%"}
obj2=document.getElementById("cont_extra");if(obj2.style.fontSize==""){obj2.style.fontSize="100%";}
actual2=parseInt(obj2.style.fontSize);incremento=10;if(tipo=="normal"){obj2.style.fontSize="100%"}
if(tipo=="aumentar"){valor=actual2+incremento;obj2.style.fontSize=valor+"%"}
if(tipo=="disminuir"){valor=actual2-incremento;obj2.style.fontSize=valor+"%"}
obj3=document.getElementById("description2");if(obj3.style.fontSize==""){obj3.style.fontSize="100%";}
actual3=parseInt(obj3.style.fontSize);incremento=10;if(tipo=="normal"){obj3.style.fontSize="100%"}
if(tipo=="aumentar"){valor=actual3+incremento;obj3.style.fontSize=valor+"%"}
if(tipo=="disminuir"){valor=actual3-incremento;obj3.style.fontSize=valor+"%"}}
