function verificaCadastro(campo,destino) {
    if (campo == 'clan_titulo') {
        $('carregando').className = 'carregando';
        new Ajax.Updater(destino, canal_url+'/adicionar/', {asynchronous:true, onComplete: showResponse, parameters:'do=verificar&clan_titulo='+$F('clan_titulo')});
    }
}
function showResponse(req) {
    if (req.responseText) {
        $(destino).className = 'aviso';
        $(destino).innerHTML = req.responseText;
    } else {
        $(destino).className = 'hidden';
    }
    $('carregando').className = 'hidden';
}

