Probá así:
Código PHP:
<html>
<head>
<script type="text/javascript">
function aumentar(){
fuente = parseInt(document.getElementById("Tu_id").style.fontSize ) + 1
if (fuente > 20)return;
aumento_fuente = fuente+"px"
document.getElementById("Tu_id").style.fontSize=aumento_fuente
}
function disminuir(){
fuente = parseInt(document.getElementById("Tu_id").style.fontSize ) - 1
if (fuente < 12)return;
disminuir_fuente = fuente+"px"
document.getElementById("Tu_id").style.fontSize=disminuir_fuente
}
</script>
</head>
<body>
<p id="Tu_id" style="font-size:12px;" >aquí viene la parrafada...kdfaasdfjasjkfhkashfjkaf</p>
<img src="lupa_mas.jpg" onclick="aumentar()"> <img src="lupa_menos.jpg" onclick="disminuir()">
</body>
</html>
Ojo con tu estructura html.