function enviardados(){

if(document.form1.nome.value=="" || document.form1.nome.value.length < 2)
{
alert( "Preencha campo Nome corretamente!" );
document.form1.nome.focus();
return false;
}

if( document.form1.email.value=="" || document.form1.email.value.indexOf('@')==-1)
{
alert( "Preencha campo E-MAIL corretamente!" );
document.form1.email.focus();
return false;
}


if(document.form1.comentario.value=="" || document.form1.comentario.value.length < 6)
{
alert( "Preencha campo Comentário corretamente,\nCampo Comentário está vazio ou\nestá menor que 6 dígitos!" );
document.form1.comentario.focus();
return false;
}


return true;
}