 $(document).ready(function(){
$("#endereco span").click(function () {
$("#endereco form").toggle("slow");
});
});
function confirma(alerta)
{
    if (confirm(alerta)) {
        return true;
    } else {
        return false;
    }
}
