function desabilitaBotao(){
		document.form1.submit.disabled = true;
}

function habilitaBotao(){
		
		if( document.form1.nome.value=="" ){
			if( document.form1.comentarios.value=="" ){
				
			//o nome e o comentário estão vazios

			} else {
			
			document.form1.submit.disabled = false;
			document.form1.submit.value = "Enviar";
			
			}
		}
}







function conferebusca(){

	if(document.formbusca.busca.value.length < 3)
	{
	alert( "Preencha pelo menos 3 caracteres" );
	document.formbusca.busca.focus();
	return false;
	}
	
	return true;
	
}//fim funcao








function enviardados(){

	if(document.form1.nome.value=="" || document.form1.nome.value.length < 3)
	{
	alert( "Preencha campo NOME corretamente!" );
	document.form1.nome.focus();
	return false;
	}//fim IF
	
	
	if( document.form1.email.value=="" || document.form1.email.value.indexOf('@')==-1 || document.form1.email.value.indexOf('.')==-1 )
	{
	alert( "Preencha campo E-MAIL corretamente!" );
	document.form1.email.focus();
	return false;
	}//fim IF
	
	
	if (document.form1.comentarios.value=="")
	{
	alert( "Preencha o campo COMENTÁRIOS!" );
	document.form1.comentarios.focus();
	return false;
	}//fim IF
	
	
	if (document.form1.comentarios.value.length < 5 )
	{
	alert( "É necessario preencher o campo COMENTÁRIOS com pelo menos 5 caracteres!" );
	document.form1.comentarios.focus();
	return false;
	}//fim IF

	return true; 
	
}//fim funcao








