function verifica(editform){
	  if(editform.F1Nome.value == ""){
			alert("Informe o nome para contato!");
      editform.F1Nome.focus();
	  return false;
		}
		  		
		if(editform.F2Email.value == ""){
			alert("Informe o e-mail para retornar ao contato!");
      editform.F2Email.focus();
	  return false;
		}
		
	   if(editform.F3Telefone.value == ""){
			alert("Informe o telefone!");
      editform.F3Telefone.focus();
	  return false;
		}
		
		if(editform.F4Assunto.value == ""){
			alert("Informe o assunto que deseja tratar!");
      editform.F4Assunto.focus();
	  return false;
		}
		}