function Verifica()
{	if ((document.fassinatura.dominio.value==""))
	{
	 	 alert('Informe O Domínio !');
		 return false;
	}
	else
{	if ((document.fassinatura.nome.value==""))
	{
	 	 alert('Informe seu nome completo.');
		 return false;
	}
	else
{	if (document.fassinatura.email.value=="" || 
		document.fassinatura.email.value.indexOf("@")<0 || 
		document.fassinatura.email.value.indexOf(".")<0)
	{
	   alert("Informe seu e-mail corretamente.");
	   return false;
	}
	else
{	if ((document.fassinatura.endereco.value==""))
	{
	 	 alert('Informe seu endereço completo !');
		 return false;
	}
	else
{	if ((document.fassinatura.bairro.value==""))
	{
	 	 alert('Informe seu Bairro !');
		 return false;
	}
	else
{	if ((document.fassinatura.cep.value==""))
	{
	 	 alert('Informe seu CEP !');
		 return false;
	}
	else
{	if ((document.fassinatura.cidade.value==""))
	{
	 	 alert('Informe sua Cidade !');
		 return false;
	}
	else
{	if ((document.fassinatura.estado.value==""))
	{
	 	 alert('Informe seu Estado !');
		 return false;
	}
	else
{	if ((document.fassinatura.ddd.value==""))
	{
	 	 alert('Informe seu DDD !');
		 return false;
	}
	else
{	if ((document.fassinatura.telefone.value==""))
	{
	 	 alert('Informe seu Telefone !');
		 return false;
	}
	else
{	if (document.fassinatura.email_empresa.value!="")
	{
		if (document.fassinatura.email_empresa.value.indexOf("@")<0 || 
			document.fassinatura.email_empresa.value.indexOf(".")<0)
		{
		   alert("Informe um Email do responsavel corretamente.");
		   return false;
		}	
	else
{   if ((document.fassinatura.tipoplano.value==""))
	{ 
		 alert('Informe o modelo do Site!');
		 return false;
	}
	else
{	if ((document.fassinatura.dvencimento.value==""))
	{ 
		 alert('Informe o melhor dia para Pagamento !');
		 return false;
	}
	else
	{
		 return true;
	}
}
}
}
}
}
}}}
}}}
}}}

function validarCPF(){
   var cpf = document.fassinatura.cpf.value;
   var filtro = /^\d{3}.\d{3}.\d{3}-\d{2}$/i;
   if(!filtro.test(cpf)){
     window.alert("CPF inválido. Tente novamente.");
	 return false;
   }
   
   cpf = remove(cpf, ".");
   cpf = remove(cpf, "-");
    
   if(cpf.length != 11 || cpf == "00000000000" || cpf == "11111111111" ||
	  cpf == "22222222222" || cpf == "33333333333" || cpf == "44444444444" ||
	  cpf == "55555555555" || cpf == "66666666666" || cpf == "77777777777" ||
	  cpf == "88888888888" || cpf == "99999999999"){
	  window.alert("CPF inválido. Tente novamente.");
	  return false;
   }

   soma = 0;
   for(i = 0; i < 9; i++)
   	 soma += parseInt(cpf.charAt(i)) * (10 - i);
   resto = 11 - (soma % 11);
   if(resto == 10 || resto == 11)
	 resto = 0;
   if(resto != parseInt(cpf.charAt(9))){
	 window.alert("CPF inválido. Tente novamente.");
	 return false;
   }
   soma = 0;
   for(i = 0; i < 10; i ++)
	 soma += parseInt(cpf.charAt(i)) * (11 - i);
   resto = 11 - (soma % 11);
   if(resto == 10 || resto == 11)
	 resto = 0;
   if(resto != parseInt(cpf.charAt(10))){
     window.alert("CPF inválido. Tente novamente.");
	 return false;
   }
   return true;
 }
 
 function remove(str, sub) {
   i = str.indexOf(sub);
   r = "";
   if (i == -1) return str;
   r += str.substring(0,i) + remove(str.substring(i + sub.length), sub);
   return r;
 }

