function checkFrmContato(form){
	if(form){
		if(form.nome.value != ""){
			if(validarEmail(form.m1.value)){
				if(form.assunto.value != ""){
					if(form.mensagem.value != ""){
						return true;
					} else emitirAlerta("Preencha a sua mensagem",form.mensagem);
				} else emitirAlerta("Preencha o assunto da mensagem",form.assunto);
			} else emitirAlerta("Verifique o email informado",form.m1);
		} else emitirAlerta("Preencha o seu nome",form.nome);
	} else return false;
	return false;
}

function checkFrmAmigo(form){
	if(form){
		if(form.nome.value != ""){
			if(validarEmail(form.m1.value)){
				if(form.nomeamigo.value != ""){
					if(validarEmail(form.emailamigo.value)){
						if(form.assunto.value != ""){
							if(form.mensagem.value != ""){
								return true;
							} else emitirAlerta("Preencha a sua mensagem",form.mensagem);
						} else emitirAlerta("Preencha o assunto da mensagem",form.assunto);
					} else emitirAlerta("Verifique o email do amigo",form.emailamigo);
				} else emitirAlerta("Preencha o nome do amigo",form.nomeamigo);
			} else emitirAlerta("Verifique seu email",form.m1);
		} else emitirAlerta("Preencha o seu nome",form.nome);
	} else return false;
	return false;
}

