	function mostraDuvidas(thediv){
		$("#" + thediv).css("display","block");
	}

	function validaForm()
	{

		if (document.fale_com.razao.value == '') {
			alert("Preencha o campo Razão Social!");
			document.fale_com.razao.focus();
			return false;
		}
	
		if (document.fale_com.email.value == '') {
			alert("Preencha o campo E-mail!");
			document.fale_com.email.focus();
			return false;
		}
		
		if (document.fale_com.email.value.indexOf("@")== -1)
		{
			alert("Preencha corretamente o campo email");
			document.fale_com.email.focus();
			return false;
		}
		if (document.fale_com.email.value.indexOf(".")== -1)
		{
			alert("Preencha corretamente o campo email");
			document.fale_com.email.focus();
			return false;
		}
		if (document.fale_com.email.value.length < 6)
		{
			alert("Preencha corretamente o campo email");
			document.fale_com.email.focus();
			return false;
		}
	
		return true;
	}


	function validaForm_mail()
	{

		if (document.fale_com.nome.value == '') {
			alert("Preencha o campo nome!");
			document.fale_com.nome.focus();
			return false;
		}
		if (document.fale_com.email.value == '') {
			alert("Preencha o campo email!");
			document.fale_com.email.focus();
			return false;
		}
		if (document.fale_com.email.value.indexOf("@")== -1)
		{
			alert("Preencha corretamente o campo email");
			document.fale_com.email.focus();
			return false;
		}
		if (document.fale_com.email.value.indexOf(".")== -1)
		{
			alert("Preencha corretamente o campo email");
			document.fale_com.email.focus();
			return false;
		}
		if (document.fale_com.email.value.length < 6)
		{
			alert("Preencha corretamente o campo email");
			document.fale_com.email.focus();
			return false;
		}
		if (document.fale_com.assunto.value == 'Nulo') {
			alert("Preencha o campo assunto!");
			document.fale_com.assunto.focus();
			return false;
		}
		if (document.fale_com.mensagem.value == '') {
			alert("Preencha o campo mensagem!");
			document.fale_com.mensagem.focus();
			return false;
		}


		return true;
	}
