function CountEmails(object, evento) {
	var valor = object.value.split(";");
	var total = valor.length;
	if(total <= 10) {
		document.getElementById("limit_indicacao").innerHTML = total;
	}
	if(total == 10) {
		ev = evento.which ? evento.which : evento.keyCode
		if (ev == 59) {
			evento.preventDefault ? evento.preventDefault() : evento.returnValue = false
			alert("Máximo de 10 e-mails!");
		}
	}
}