Eleições 2010: com Ficha Limpa, candidaturas impugnadas chegam a 3 mil

A entrada de São Paulo no ranking de impugnações elevou para quase 3 mil o número de candidatos com problemas na Justiça Eleitoral. Ontem, o TSE (Tribunal Superior Eleitoral) começou a divulgar os dados de candidaturas impugnadas no estado.

Até as 20h, a Corte havia registrado o questionamento de 301 registros dos 3.154 políticos que se lançaram na disputa por cargos.

Com isso, o total de candidaturas impugnadas na Justiça Eleitoral chegou a 2.967. Pelo sistema do tribunal, não é possível detalhar quantas impugnações foram pedidas pelo Ministério Público, e quantas foram solicitadas por partidos e candidatos.

As impugnações podem ser solicitadas por Ministério Público, siglas e candidatos para impedir a aprovação do registro pela Justiça Eleitoral.

As falhas apontadas na impugnação podem ir desde a falta de documentos a denúncias com intuito de impedir que políticos "fichas-sujas" disputem as eleições.

Os tribunais regionais, no entanto, informaram que a maioria das impugnações foi motivada por falhas na documentação enviada pelos candidatos, como falta de certidões negativas na Justiça.

O TSE não havia registrado até nenhum pedido de impugnação dos nove candidatos que disputam a Presidência da República.

O nome do deputado federal Paulo Maluf (PP-SP) não figura entre os candidatos com problemas na Justiça. É um indício de que o número de candidaturas impugnadas ainda deve aumentar. O TSE tem até o fim do dia amanhã para finalizar a lista de candidatos questionados na Justiça Eleitoral.
Por enquanto, Minas Gerais, o segundo maior colégio eleitoral do país, atrás apenas de São Paulo, lidera o ranking dos pedidos de impugnação.

De um total de 1.701 registros de candidatura, 614 foram impugnadas, segundo balanço divulgado pelo TRE (Tribunal Regional Eleitoral) na última sexta-feira (14).

O estado de Alagoas ocupa a segunda posição em números absolutos, mas em cálculo proporcional - quando são comparados o número de candidaturas registradas e o número de questionamentos -, o estado lidera.

Dos 438 políticos que se lançaram candidatos, 429 tiveram a candidatura impugnada, o equivalente a 97,9% dos registros.

Até agora, Rondônia ocupava o terceiro lugar, com 327 candidaturas impugnadas, de um total de 477 políticos registrados.

Fonte: Folhapress, no Valor Econômico


ENVIE A MATÉRIA:

<% Dim objCDONTS ' Email object Dim strFromName ' From persons' real name Dim strFromEmail, strToEmail ' Email addresses Dim strSubject, strBody ' Message Dim strThisPage ' This page's URL Dim strReferringPage ' The referring page's URL Dim bValidInput ' A boolean indicating valid parameters ' Retrieve this page name and referring page name strThisPage = Request.ServerVariables("SCRIPT_NAME") strReferringPage = Request.ServerVariables("HTTP_REFERER") ' Debugging lines: 'Response.Write strThisPage & "
" & vbCrLf 'Response.Write strReferringPage & "
" & vbCrLf ' Read in and set the initial values of our message parameters strFromName = Trim(Request.Form("txtFromName")) strFromEmail = Trim(Request.Form("txtFromEmail")) strToEmail = Trim(Request.Form("txtToEmail")) strSubject = "www.contee.org.br" strBody = Trim(Request.Form("txtMessage")) ' I set the body message to a message that referenced the page the ' user arrived from. This makes it great if you place a link to it ' from your different articles, but can be weird if people link in ' from other web sites. If strBody = "" Then If strReferringPage = "" Or InStr(1, strReferringPage, "www.contee.org.br", 1) = 0 Then strBody = "" strBody = strBody & "O link abaixo é uma sugestão de leitura: Eleições 2010: com Ficha Limpa, candidaturas impugnadas chegam a 3 mil" & vbCrLf strBody = strBody & vbCrLf strBody = strBody & "http://www.contee.org.br/noticias/msoc/nmsoc1299.asp" & vbCrLf Else strBody = "O link abaixo é uma sugestão de leitura: Eleições 2010: com Ficha Limpa, candidaturas impugnadas chegam a 3 mil" sstrBody = strBody & "O link abaixo é uma sugestão de leitura: Eleições 2010: com Ficha Limpa, candidaturas impugnadas chegam a 3 mil" & vbCrLf strBody = strBody & vbCrLf strBody = strBody & "http://www.contee.org.br/noticias/msoc/nmsoc1299.asp" & vbCrLf End If End If ' Quick validation just to make sure our parameters are somewhat valid bValidInput = True bValidInput = bValidInput And strFromName <> "" bValidInput = bValidInput And IsValidEmail(strFromEmail) bValidInput = bValidInput And IsValidEmail(strToEmail) ' If valid send email and show thanks, o/w show form If bValidInput Then ' Set up our email object and send the message Set objCDONTS = Server.CreateObject("CDONTS.NewMail") objCDONTS.From = strFromName & " <" & strFromEmail & ">" objCDONTS.To = strToEmail objCDONTS.Subject = strSubject objCDONTS.Body = strBody objCDONTS.Send Set objCDONTS = Nothing ' Show our thank you message ShowThanksMsg Else If "http://" & Request.ServerVariables("HTTP_HOST") & strThisPage = strReferringPage Then Response.Write "Foi encontrado erro no preenchimento. Por favor confira os dados:" & "
" & vbCrLf End If ' Show our information retrieval form ShowReferralForm strThisPage, strFromName, strFromEmail, strToEmail, strBody End If ' End of page logic... subs and functions follow! %>
<% ' Subroutines and Functions that encapsulate some functionality ' and make the above code easier to write... and read. ' A quick email syntax checker. It's not perfect, ' but it's quick and easy and will catch most of ' the bad addresses than people type in. Function IsValidEmail(strEmail) Dim bIsValid bIsValid = True If Len(strEmail) < 5 Then bIsValid = False Else If Instr(1, strEmail, " ") <> 0 Then bIsValid = False Else If InStr(1, strEmail, "@", 1) < 2 Then bIsValid = False Else If InStrRev(strEmail, ".") < InStr(1, strEmail, "@", 1) + 2 Then bIsValid = False End If End If End If End If IsValidEmail = bIsValid End Function ' I made this a function just to get it out of the ' logic and make it easier to read. It just shows the ' form that asks for the input Sub ShowReferralForm(strPageName, strFromName, strFromEmail, strToEmail, strBody) ' I use script_name so users can rename this script witout having to change the code. %>
Seu nome:
Seu e-mail:
Para:
 
<% '

The Message to be sent:

'

Subject: < %= strSubject % >

'

Body: < %= strBody % >

End Sub ' This just shows our thank you message... probably didn't need to ' be a function, but since I made the form one I figured I'd do this ' for consistency. Sub ShowThanksMsg() %>

Sua mensagem foi enviada com sucesso. <% End Sub %>