function valida()
{
	vazio = false;
	if(document.formulario.nome.value=="")
		{
		alert("preencha o campo nome");
		document.formulario.nome.focus();
		vazio = true;
		return false;
		}
	
	if(document.formulario.empresa.value=="")
		{
		alert("preencha o campo empresa");
		document.formulario.empresa.focus();
		vazio = true;
		return false;
		}


/*
	if(document.formulario.dia.value=="00")
		{
		alert("preencha o campo dia do aniversário");
		document.formulario.dia.focus();
		vazio = true;
		return false;
		}
		if(document.formulario.mes.value=="00")
		{
		alert("preencha o campo mês do aniversário");
		document.formulario.mes.focus();
		vazio = true;
		return false;
		}
*/		
		if(document.formulario.ddd.value=="")
		{
		alert("preencha o campo DDD");
		document.formulario.ddd.focus();
		vazio = true;
		return false;
		}
		if(document.formulario.telefone.value=="")
		{
		alert("preencha o campo telefone");
		document.formulario.telefone.focus();
		vazio = true;
		return false;
		}
		if(document.formulario.email.value=="")
		{
		alert("preencha o campo e-mail");
		document.formulario.email.focus();
		vazio = true;
		return false;
		}
		/*
		if(document.formulario.mensagem.value=="")
		{
		alert("preencha o campo mensagem");
		document.formulario.mensagem.focus();
		vazio = true;
		return false;
		}
		*/
				
if(vazio == false)
{document.formulario.submit();}

}


//editor
tinyMCE.init({
	//mode : "textareas",
	//theme : "advanced",
	//editor_selector : "tipo1"
	
	mode : "textareas",
	theme : "advanced",
	theme_advanced_buttons1 : "",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "",
	theme_advanced_toolbar_align : "",
	theme_advanced_path_location : "",
	extended_valid_elements : "",	

width : "500",
height : "200",
force_br_newlines : true

});