function checkFrmColunaIndique(form) {
	if (form) {
		if (form.nome.value != '') {
			if (validarEmail(form.m1.value)) {
				if (form.nomeamigo.value != '') {
					if (validarEmail(form.m1amigo.value)) {
						return true;
					} else emitirAlerta('Preencha o e-mail do seu amigo',form.m1amigo);
				} else emitirAlerta('Preencha o nome do seu amigo',form.nomeamigo);
			} else emitirAlerta('Preencha o seu e-mail corretamente',form.m1);
		} else emitirAlerta('Preencha o seu nome',form.nome);
	}
	return false;
}
