// JavaScript Document

//
// Mostra/Oculta div
//
function MostraOcultaDiv(id) {
	if (document.getElementById(id).style.display == 'none') {
		document.getElementById(id).style.display = 'block';
		return true;
	} 
	
	if (document.getElementById(id).style.display == 'block') {
		document.getElementById(id).style.display = 'none';
		return true;
	}
}


<!--
function verificaContato()
{
	str_erro = "" ;
	if (document.FrmContato.Nome.value == "")
	{
		str_erro = str_erro + "Preencha o seu Nome. \n"
		document.FrmContato.Nome.focus();
	}else
	if (document.FrmContato.Email.value == "")
	{
		str_erro = str_erro + "Preencha o seu E-mail. \n"
		document.FrmContato.Email.focus();
	}else
	
	if (document.FrmContato.Mensagem.value == "")
	{
		str_erro = str_erro + "Preencha a sua mensagem. \n"
		document.FrmContato.Mensagem.focus();
	}	
	if (str_erro != "")
	{
		//alert ("ERRO:\n\n"+str_erro);
		return;
	}
	if (
			(str_erro == "")
	   )
	   	{
			document.FrmContato.action = "formmail.php";
			document.FrmContato.submit();
		}

}//-->



