Analistas de mercado projetam em 7,09% crescimento da economia este ano
A estimativa de analistas do mercado financeiro para o crescimento da economia neste ano oscilou de 7,10% para 7,09%, segundo o boletim Focus, divulgado hoje (30) pelo Banco Central (BC). Há quatro semanas, a projeção para a expansão do Produto Interno Bruto (PIB), soma de todos os bens e serviços produzidos no país, era de 7,20%. Para 2011, a projeção de 4,50% é mantida há 38 semanas.
O boletim Focus também traz a expectativa para o crescimento da produção industrial, que passou de 11,49% para 11,47%, em 2010. Para o próximo ano, a previsão de expansão foi mantida em 5%.
A projeção para a relação entre a dívida líquida do setor público e o PIB passou de 40,77% para 40,73%, em 2010, e permaneceu em 39,50%, em 2011.
A expectativa para a cotação do dólar permaneceu em R$ 1,80, neste ano, e em R$ 1,85, em 2011.
A previsão para o superávit comercial (saldo positivo de exportações menos importações) permaneceu em US$ 15 bilhões, neste ano, e passou de US$ 9 bilhões para US$ 8,18 bilhões, em 2011.
Para o déficit em transações correntes (registro das transações de compra e venda de mercadorias e serviços do Brasil com o exterior), a projeção foi alterada de US$ 49,91 bilhões para US$ 49,96 bilhões, neste ano, e de US$ 57,90 bilhões para US$ 58 bilhões, em 2011.
A expectativa para o investimento estrangeiro direto (recursos que vão para o setor produtivo do país) caiu de US$ 31 bilhões para US$ 30 bilhões, neste ano, e de US$ 38,20 bilhões para US$ 38 bilhões, em 2011.
Fonte: Agência Brasil
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: Analistas de mercado projetam em 7,09% crescimento da economia este ano" & vbCrLf
strBody = strBody & vbCrLf
strBody = strBody & "http://www.contee.org.br/noticias/msoc/nmsoc1377.asp" & vbCrLf
Else
strBody = "O link abaixo é uma sugestão de leitura: Analistas de mercado projetam em 7,09% crescimento da economia este ano"
sstrBody = strBody & "O link abaixo é uma sugestão de leitura: Analistas de mercado projetam em 7,09% crescimento da economia este ano" & vbCrLf
strBody = strBody & vbCrLf
strBody = strBody & "http://www.contee.org.br/noticias/msoc/nmsoc1377.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!
%>
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 %>