var tam = 12;
function mudaFonte(tipo,id)
	{
	  if(tipo == 'mais') {
		  if(tam < 16) tam += 2 ;    			 
	  }
	  else {
		  if(tam > 12) tam -= 2 ;
	  }
	  document.getElementById(id).style.fontSize = tam + 'px';
	}

function imprimir(id){
	window.print(id);
}

function acessibilidade(event) {
	//107 = mais | 109 = menos
	if(event.keyCode == 107) mudaFonte('mais','fonte');
	if(event.keyCode == 109) mudaFonte('menos','fonte');
}

