function addToFavorites() {
	if (document.all) {
		window.external.addFavorite("http://www.votorantim.com.br/","Votorantim");
	}
}
function imprimir() {
	window.print();
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
function limpa_campo(obj) {
	obj.value = "";
}
function busca_campo(obj) {
	if (obj.value=="") obj.value = "BUSCA";
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
function closeFloater() {
	obj = document.getElementById('floater');
	obj.style.display = 'none';
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
tamanho_atual = 1
function mudaTamanho(valor) { // 12,13,16
	h1 = document.getElementsByTagName('h1');
	h2 = document.getElementsByTagName('h2');
	input = document.getElementsByTagName('input');
	textarea = document.getElementsByTagName('textarea');
	selectfield = document.getElementsByTagName('select');
	p = document.getElementsByTagName('p');
	if (valor=='menos') {
		if (tamanho_atual > 1) tamanho_atual -= 1
	}
	if (valor=='mais') {
		if (tamanho_atual < 4) tamanho_atual += 1
	}
	if (tamanho_atual==1) {
		for(i=0;i<h1.length;i++) { h1[i].style.fontSize = "15px" }
		for(i=0;i<h2.length;i++) { h2[i].style.fontSize = "18px" }
		for(i=0;i<input.length;i++) { input[i].style.fontSize = "13px" }
		for(i=0;i<textarea.length;i++) { textarea[i].style.fontSize = "13px" }
		for(i=0;i<selectfield.length;i++) { selectfield[i].style.fontSize = "13px" }
		for(i=0;i<p.length;i++) { p[i].style.fontSize = "13px" }
	}
	if (tamanho_atual==2) {
		for(i=0;i<h1.length;i++) { h1[i].style.fontSize = "17px" }
		for(i=0;i<h2.length;i++) { h2[i].style.fontSize = "19px" }
		for(i=0;i<input.length;i++) { input[i].style.fontSize = "15px" }
		for(i=0;i<textarea.length;i++) { textarea[i].style.fontSize = "15px" }
		for(i=0;i<selectfield.length;i++) { selectfield[i].style.fontSize = "15px" }
		for(i=0;i<p.length;i++) { p[i].style.fontSize = "15px" }
	}
	if (tamanho_atual==3) {
		for(i=0;i<h1.length;i++) { h1[i].style.fontSize = "19px" }
		for(i=0;i<h2.length;i++) { h2[i].style.fontSize = "20px" }
		for(i=0;i<input.length;i++) { input[i].style.fontSize = "17px" }
		for(i=0;i<textarea.length;i++) { textarea[i].style.fontSize = "17px" }
		for(i=0;i<selectfield.length;i++) { selectfield[i].style.fontSize = "17px" }
		for(i=0;i<p.length;i++) { p[i].style.fontSize = "17px" }
	}
	if (tamanho_atual==4) {
		for(i=0;i<h1.length;i++) { h1[i].style.fontSize = "21px" }
		for(i=0;i<h2.length;i++) { h2[i].style.fontSize = "21px" }
		for(i=0;i<input.length;i++) { input[i].style.fontSize = "19px" }
		for(i=0;i<textarea.length;i++) { textarea[i].style.fontSize = "19px" }
		for(i=0;i<selectfield.length;i++) { selectfield[i].style.fontSize = "19px" }
		for(i=0;i<p.length;i++) { p[i].style.fontSize = "19px" }
	}
}






