function limita_caracteres(valor,quant) {
	total = valor.length;
	if(total <= quant) {
		resto = quant - total;
		document.getElementById('conta').innerHTML = resto;
	} else {
		document.getElementById('mensagem').value = valor.substr(0,quant);
	}
}

function limita_mostra(valor) {
	document.write('<span id="conta">'+valor+'</span>');
}

function abreJanela(link,largura,altura,nome) {
	w = screen.width;
	h = screen.height;

	meio_w = w/2;
	meio_h = h/2;

	altura2 = altura/2;
	largura2 = largura/2;
	meio1 = meio_h-altura2;
	meio2 = meio_w-largura2;

	var janela = window.open(link, nome, 'height=' + altura + ', width=' + largura + ', top='+meio1+', left='+meio2+', scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=no, copyhistory=no');
	janela.focus();
}