
var tamanhos = new Array('9px','10px','11px','12px','13px','14px','15px','18px','20px','22px'); 
var tamanhoInicial = 4;   
function mudaTamanho( idAlvo,acao ){   
	if (!document.getElementById) return 
		var selecionados = null, tamanho = tamanhoInicial, i, j, tagsAlvo;   
		tamanho += acao;   
	if ( tamanho < 0 ) 
		tamanho = 0;   
	if ( tamanho > 9 ) 
		tamanho = 9;   
		tamanhoInicial = tamanho;   
	if ( !( selecionados = document.getElementById( idAlvo ) ) ) 
		selecionados = document.getElementsByTagName( idAlvo )[ 0 ];      
		selecionados.style.fontSize = tamanhos[ tamanho ];      
	/*for ( i = 0; i < tagAlvo.length; i++ ){     
		tagsAlvo = selecionados.getElementsByTagName( tagAlvo[ i ] );     
	for ( j = 0; j < tagsAlvo.length; j++ ) tagsAlvo[ j ].style.fontSize = tamanhos[ tamanho ]; }*/  
	
	}
	
function ampliar(url,largura,altura) {
	window.open(url,'secta', 'width='+largura+', height='+altura+', top='+1+', left='+1+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no'); 
}

