function testeLogin(){
  var login=document.formPrimeiroCadastro.login.value;
  Ajax.updater("teste_login", 'http://www.cadetu.com.br/includes/testelogin.php?login='+login, {method:'get'});
}

function tipoPessoa(){
  if(document.formPrimeiroCadastro.tipoDocumento.value == 'CPF'){
    document.getElementById('div_formPrimeiroCadastro_nascimento').style.display = "block";
    document.getElementById('div_formPrimeiroCadastro_sexo').style.display = "block";
  }
  else if(document.formPrimeiroCadastro.tipoDocumento.value == 'CNPJ'){
    document.getElementById('div_formPrimeiroCadastro_nascimento').style.display = "none";
    document.getElementById('div_formPrimeiroCadastro_sexo').style.display = "none";
  }
}

function getEndereco(valor, tipo, retorno, nomeFormulario){
  Ajax.updater("input_"+retorno, 'http://www.cadetu.com.br/includes/setaEndereco.php?tipo='+tipo+'&valor='+valor+'&retorno='+retorno+'&nomeFormulario='+nomeFormulario, {method:'get'});
}

function listaSubCategoria(id_Segmento,idDiv){
  try{
    Ajax.updater(idDiv, "http://www.cadetu.com.br/includes/listarSubSegmento.php?id_Segmento="+id_Segmento, {asynchronous:true,method:'get',evalScripts:true});
  }
  catch(e){ 
   new Ajax.Updater(idDiv, "http://www.cadetu.com.br/includes/listarSubSegmento.php?id_Segmento="+id_Segmento, {asynchronous:true,method:'get',evalScripts:true});
  }
}
function testeHotsite(dominio){
  try{
    Ajax.updater("teste_dominio", 'http://www.cadetu.com.br/includes/testehotsite.php?dominio='+dominio, {asynchronous:true,method:'get'});
  }
  catch(e){
    new Ajax.Updater("teste_dominio", 'http://www.cadetu.com.br/includes/testehotsite.php?dominio='+dominio, {asynchronous:true,method:'get'});
  }
}