function writeEmail(nome, provedor, fim) {
	if(fim == null) fim = '.com.br';
	if(fim.charAt(0) != '.') fim = '.' + fim;
	window.document.write('<a href="mailto:');
	window.document.write(nome);
	window.document.write('@');
	window.document.write(provedor);
	window.document.write(fim);
	window.document.write('">');
	window.document.write(nome);
	window.document.write('@');
	window.document.write(provedor);
	window.document.write(fim);
	window.document.write('</a>');
}
