Para que serve a reforma política
Por Luiza Erundina

Juventude não quer só comida, quer também 10% do PIB para Educação
Por Patrick Baptista

O sonho de Chico não acabou
Por Augusto César Petta

A morte da juíza e a mudança do desfecho previsível
Por Iriny Lopes

O livro novo de Fernando Morais, o obcecado
Por Eric Nepomuceno

Globo: os princípios, a credibilidade e a prática
Por Venício Lima

História desmente "princípios" da Globo
Por Altamiro Borges

O mito do bônus e seus perigos
Por Ladislau Dowbor

CUT contra os interesses do Estadão
Por Arthur Henrique

As mulheres brasileiras e o PNE 2011-2020
Por Maria Lúcia de Santana Braga

A contagem regressiva da crise mundial
Por Luis Nassif

A crise e as novas oportunidades
Por Marcio Pochmman

Há 30 anos, renovação sindical e Conclat
Por Augusto Petta

Que esperar do Congresso Nacional para o segundo semestre
Por André Santos

A urgência do controle de capitais externos
Por Paulo Kliass

Tucanos detonam a TV Cultura
Por Altamiro Borges

Risco invisível: o assédio moral nas relações de trabalho
Por Fabrício Vieira de Moraes

Brasil vai virar uma fazenda chinesa?
Por Rodrigo Vianna

A Universidade e as leis para a comunicação
Por Laurindo Lalo Leal Filho

América Latina: por que no Brasil é diferente?
Por Venício Lima

Quando a política desmascara a economia
Por Luis Nassif

Uma declaração brilhante e valente
Por Fidel Castro

Ações coletivas, o novo eixo de atuação dos sindicatos
Por José Geraldo de Santana Oliveira

O Direito de Imagem
Por José Geraldo de Santana Oliveira

Democracia inacabada
Por Por Luiza Erundina

País sem miséria é país sem pessoas abandonadas
Por Emir Sader

A mercantilização dos serviços públicos
Por Paulo Kliass

A OIT e o trabalhador doméstico
Por Pascoal Carneiro 

Por que o Encontro dos Blogueiros foi um sucesso
Por Altamiro Borges

A realidade da educação superior chilena
Por Mateus Fiorentini

O Brasil e a nova desindustrialização
Por Marcio Pochmann

Merval Pereira e a “negociata” da ABL
Por Altamiro Borges

Formação de formadores, experiência internacional inédita
Por Augusto Petta

Procurar no diretório de ARTIGOS & OPINIÕES:
" />
 
Procurar por : Palavra Exata Por Palavra Frase <% 'Read in all the search words into one variable strSearchWords = Trim(Request.QueryString("search")) 'If the site is in English then use the server HTML encode method If blnEnglishLanguage = True Then 'Replace any HTML tags with the HTML codes for the same characters (stops people entering HTML tags) strSearchWords = Server.HTMLEncode(strSearchWords) 'If the site is not english just change the script tags Else 'Just replace the script tag <> with HTML encoded < and > strSearchWords = Replace(strSearchWords, "<", "<", 1, -1, 1) strSearchWords = Replace(strSearchWords, ">", ">", 1, -1, 1) End If 'Slit each word to be searched up and place in an array sarySearchWord = Split(Trim(strSearchWords), " ") 'Read the file number to show from intFileNum = CInt(Request.QueryString("FileNumPosition")) 'Set the number of files shown so far to the file number read in above intNumFilesShown = intFileNum 'Create the file system object Set fsoObject = Server.CreateObject("Scripting.FileSystemObject") 'If there is no words entered by the user to search for then dont carryout the file search routine If NOT strSearchWords = "" Then 'Get the path and the root folder to be searched Set fldObject = fsoObject.GetFolder(Server.MapPath("./")) 'Read in the server path to this ASP script strServerPath = fldObject.Path & "\" 'Set to true as this is searching the root directory blnIsRoot = True 'Call the search sub prcedure Call SearchFile(fldObject) 'Reset server variables Set fsoObject = Nothing Set fldObject = Nothing 'Display the HTML table with the results status of the search or what type of search it is Response.Write vbCrLf & " " Response.Write vbCrLf & " " 'Display that there where no matching records found If blnSearchResultsFound = False Then Response.Write vbCrLf & " " 'Else Search went OK so display how many records found Else Response.Write vbCrLf & " " End If 'Close the HTML table with the search status Response.Write vbCrLf & " " Response.Write vbCrLf & "
 Searched the site for " & strSearchWords & ".    Sorry, no results found. Searched the site for " & strSearchWords & ".    Displaying Results " & intFileNum + 1 & " - " & intNumFilesShown & " of " & intTotalFilesFound & ".
" 'HTML table to display the search results or an error if there are no results Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & "
" 'If no results are found then display an error message If blnSearchResultsFound = False Then 'Write HTML displaying the error Response.Write vbCrLf & "
" Response.Write vbCrLf & " Your Search - " & strSearchWords & " - did not match any files on this site." Response.Write vbCrLf & "

" Response.Write vbCrLf & " Suggestions:" Response.Write vbCrLf & "
" Response.Write vbCrLf & "
  • Make sure all words are spelled correctly.
  • Try different keywords.
  • Try more general keywords.
  • Try fewer keywords.
" 'Else display the results Else 'Loop round to display each result within the search results array For intDisplayResultsLoopCounter = 1 to (intNumFilesShown - intFileNum) Response.Write vbCrLf & "
" Response.Write vbCrLf & " " & sarySearchResults(intDisplayResultsLoopCounter) Response.Write vbCrLf & "
" Next End If 'Close the HTML table displaying the results Response.Write vbCrLf & "
" End If 'Display an HTML table with links to the other search results If intTotalFilesFound > intRecordsPerPage then 'Display an HTML table with links to the other search results Response.Write vbCrLf & "
" Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & "
" Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & "
" Response.Write vbCrLf & " Results Page:  " 'If the page number is higher than page 1 then display a back link If intNumFilesShown > intRecordsPerPage Then Response.Write vbCrLf & " << Prev " End If 'If there are more pages to display then display links to all the search results pages If intTotalFilesFound > intRecordsPerPage Then 'Loop to diplay a hyper-link to each page in the search results For intPageLinkLoopCounter = 1 to CInt((intTotalFilesFound / intRecordsPerPage) + 0.5) 'If the page to be linked to is the page displayed then don't make it a hyper-link If intFileNum = (intPageLinkLoopCounter * intRecordsPerPage) - intRecordsPerPage Then Response.Write vbCrLf & " " & intPageLinkLoopCounter Else Response.Write vbCrLf & "  " & intPageLinkLoopCounter & "  " End If Next End If 'If it is Not the last of the search results than display a next link If intTotalFilesFound > intNumFilesShown then Response.Write vbCrLf & "  Next >>" End If 'Finsh HTML the table Response.Write vbCrLf & "
" Response.Write vbCrLf & "
" End If %>