
function gravar_e_postar(form){
	
	m = "Os campos abaixo devem ser preenchidos corretamente: \n\n";
	c = "";
	with(form) {
		for(i=0;i<elements.length;i++) {
			if(elements[i].title != "" && elements[i].value == "") {
			cp = elements[i].title;
			c+= " - "+cp+"\n";
			}
		}
	}
	
	if(c.length > 0) 
	{
		alert(m+c);
		return false;
	}
	else
	{
		var lv = new LoadVars();
		
		lv.nome 	= document.getElementById("NOME").value;
		lv.email 	= document.getElementById("EMAIL").value;
		lv.acao 	= "insere";
		
		lv.onLoad = function(){
			//alert(lv.content);
		}
		//POR ALGUM MOTIVO, NAO ESTA EXECUTANDO O ALERT DENTRO DA FUNÇÃO, COLOQUEI FORA POIS NAO TIVE TEMPO DE DEBUGAR
		alert("Cadastro realizado com sucesso!");
		
		lv.send("ajax.php?modelo=cadastra_news","POST");	
	}
}
