function enviar(){
	var fml=document.formContato
	var status=true;
	var arroba = fml.email.value.indexOf("@");
	var ponto = fml.email.value.indexOf(".");
	
	//Valida o campo NOME.
	if(fml.nome.value.length < 3){
		alert("Preencha corretamente o campo 'Nome'.");
		fml.nome.focus();
		status=false;
	}

	//Valida o campo E-MAIL.
	else if(fml.email.value.length < 5 || arroba == -1 || ponto == -1){
		alert("E-mail invalido.");
		fml.email.focus();
		status=false;
	}
	
	//Valida o campo ASSUNTO.
	else if(fml.assunto.value == 0){
		alert("Selecione um assunto.");
		fml.assunto.focus();
		status=false;
	}
	
	//Valida o campo MENSAGEM.
	else if(fml.mensagem.value.length < 3){
		alert("Preencha corretamente o campo 'Mensagem'.");
		fml.mensagem.focus();
		status=false;
	}
	
	if(status){
	 fml.action="../scripts/redirect.asp?type=contato";
	 fml.submit();	
	}
}
function envianews(){
	var fml=document.news
	var status=true;
	var arroba = fml.email.value.indexOf("@");
	var ponto = fml.email.value.indexOf(".");
	
	//Valida o campo NOME.
	if(fml.nome.value.length < 3){
		alert("Preencha corretamente o campo 'Nome'.");
		fml.nome.focus();
		status=false;
	}

	//Valida o campo E-MAIL.
	else if(fml.email.value.length < 5 || arroba == -1 || ponto == -1){
		alert("E-mail invalido.");
		fml.email.focus();
		status=false;
	}
	if(status){
	 fml.action="scripts/redirect.asp?type=news";
	 fml.submit();	
	}
}
