function consiste()
  { 
    if (document.Cadastro.Nome.value.length == 0) {
		alert("Informe seu nome.")
		return
     } 
    if (document.Cadastro.Endereco.value.length == 0) {
		alert("Informe seu endereço.")
		return
     }  
    if (document.Cadastro.CEP.value.length == 0) {
		alert("Informe seu CEP.")
		return
     } 
    if (document.Cadastro.Cidade.value.length == 0) {
		alert("Informe sua cidade.")
		return
     }
    if (document.Cadastro.UF.value.length == 0) {
		alert("Informe a UF.")
		return
     }
    if (document.Cadastro.Pais.value.length == 0) {
		alert("Informe seu país.")
		return
     }
    if (document.Cadastro.Telefone.value.length == 0) {
		alert("Informe seu telefone.")
		return
     } 
   
   val=("Cadastro: - IDL_Site " + document.Cadastro.Nome.value)
   document.Cadastro.subject.value=val
   
   {document.Cadastro.submit()}
  }