// JavaScript Document

function classif()
{
nome = document.proposta.nome.value
email = document.proposta.email.value
texto = document.proposta.msg.value

	
	if(nome.length == "")
	{
		alert('Preecha o Campo com seu Nome')
		return false
	}
	if(mail.length == "")
	{
		alert('Preecha o Campo E-mail de Contato')
		return false
	}
	if(texto.length == "")
	{
		alert('Escreva seu Comentário')
		return false
	}
	else
	{
		return true	
	}
		

}

////////////// ==================================

function comentarios()
{
nome = document.coment.NCO_nome.value
email = document.coment.NCO_email.value
cidade = document.coment.NCO_cidade.value
texto = document.coment.NCO_texto.value

	
	if(nome.length == "")
	{
		alert('Preecha o Campo com seu Nome')
		return false
	}
	if(mail.length == "")
	{
		alert('Preecha o Campo E-mail de Contato')
		return false
	}
	if(cidade.length == "")
	{
		alert('Preecha o Campo Cidade')
		return false
	}
	if(texto.length == "")
	{
		alert('Escreva seu Comentário')
		return false
	}
	else
	{
		return true	
	}
		

}


///////////////////////// -------------------------------------

function mensagem()
{
nome = document.coment.CRE_nome.value
email = document.coment.CRE_email.value
cidade = document.coment.CRE_cidade.value
texto = document.coment.CRE_texto.value

	
	if(nome.length == "")
	{
		alert('Preecha o Campo com seu Nome')
		return false
	}
	if(mail.length == "")
	{
		alert('Preecha o Campo E-mail de Contato')
		return false
	}
	if(cidade.length == "")
	{
		alert('Preecha o Campo Cidade')
		return false
	}
	if(texto.length == "")
	{
		alert('Escreva seu Comentário')
		return false
	}
	else
	{
		return true	
	}
		

}


