var submissions = 0;
// ----------------------
function checkForDuplicate() 
{
if (document.FormDelludi) 
  {
submissions++;
if (submissions > 1)
	{
	reset();
	alert('Mensagem já enviada');
	return false;
	}
else
	{
	return true;
	}
  }
else 
  {
return false;
  }
}
// ----------------------
function reset() {
document.FormDelludi.email.value="";
document.FormDelludi.nome.value="";
document.FormDelludi.cidade.value="";
document.FormDelludi.comentarios.value="";
document.FormDelludi.email.focus();
}
// ----------------------
function checkFields() {               
var email = document.FormDelludi.email.value;
var nome = document.FormDelludi.nome.value; 
document.FormDelludi.nome.value = nome.toUpperCase(); 
 if ( email != '' && (email.indexOf('@') == -1 || email.indexOf('.') == -1))  
 {
        alert('E-mail com formato errado');
        document.FormDelludi.email.focus();
        return false;
 }                                                                            
 if  (document.FormDelludi.nome.value == '' || email == ''  || document.FormDelludi.comentarios.value == '' )  
   {
    alert ('Preencher os módulos solicitados.' );
                                   
    if  (document.FormDelludi.email.value == '' ) 
		{ document.FormDelludi.email.focus();  
          return false;
        }  
    else if (document.FormDelludi.nome.value == '' ) 
		{ document.FormDelludi.nome.focus();
          return false;   
        }
     document.FormDelludi.comentarios.focus(); 
     return false;
    } 
 else if (submissions == 1) 
   {
	 document.FormDelludi.Enviar.click();
	 return true;
   }
 else  
   {
	 return true;
   }
}
// ----------------------
