<?
/**
*
*Funções "úteis"
*
*@package	Scielo.org
*@version      1.2
*@author       André Otero(andre.otero@bireme.org)
*@copyright     BIREME
*/
require_once(dirname(__FILE__)."/../classes/domit-1/xml_domit_lite_include.inc.php");
require_once(dirname(__FILE__)."/../../../php/include.php");

/**
 * Extrai os titulos do XML
 * 
 * Retorna (se possivel) o Titulo do artigo no mesmo idioma da interface Scielo,
 * se não encontra um Titulo no idioma corrente retorna o 1o titulo encontrado
 * 
 * 07/08/2007 -> Adicionado o parametro lang. Antes as vezes tinha no mesmo idioma,
 * mas retornava de outro porque $lang era NULL
 *
 * @param String authorsXML XML contendo os titulos
 * @retuns String String com titulo
 */
function getTitle($titleXML, $lang = '')
{
    $domLiteDocument =& new DOMIT_Lite_Document();
    $domLiteDocument->parseXML($titleXML);
    $nodes =& $domLiteDocument->getElementsByPath("/TITLES/TITLE");
    /*
    por padrão vai o primeiro title que ele achar
    */
    $node = $nodes->item(0);
    if($node)
        $article_title = $node->getText();
    /*
    procura um titulo no lang corrente para exibir
    */
	
    for($j = 0; $j < $nodes->getLEngth(); $j++)
	{
        $node = $nodes->item($j); 
        $lang_article = $node->getAttribute("LANG");
        if($lang_article == $lang)
        $article_title = $node->getText();
    }

    return  utf8_encode($article_title);
}

/**
*Extrai os autores do XML e retorna uma String com os nomes em forma de link
*
*Para cada autor no XML, monta um link para pesquisa no IAH do Scielo onde
*o artigo esta.
*
*@param String authorsXML XML contendo os autores
*@param boolean link Informa se a função irá devolver uma string com Links para busca por autor via iAH na Instancia
*@param String domain Dominio da instancia Scielo para onde será apontada a busca pelo autor
*@retuns String String com os autores com ou sem link para pesquisa iAH
*/
function getAutors($authorsXML, $link=false,$domain=""){

    $domLiteDocument =& new DOMIT_Lite_Document();
    $sucess = $domLiteDocument->parseXML(str_replace("\\\\\\","",$authorsXML));

	$article_autors = "";
/**
* $sucess indica que o XML foi "parseado" com sucesso, e é bem formado
*/
	if($sucess)
	{
		$names =& $domLiteDocument->getElementsByPath("//NAME");
		$surnames =& $domLiteDocument->getElementsByPath("//SURNAME");

		for($n = 0; $n < $names->getLEngth();$n++)
		{
			$nameNode = $names->item($n);
			$surnameNode = $surnames->item($n);

			$nameText = $nameNode->getText();
			$surnameText = $surnameNode->getText();
			$searchText = str_replace(" ","+",$nameText . $surnameText);

			if(!$link)
			{
				$article_autors .= $surnameText .", ".$nameText."; ";
			}else{
				$searchText = urlencode(str_replace(" ","+",$surnameText ." " .$nameText));
				if(!strstr($domain,"http://"))
				{
					$domain = "http://".$domain;
				}
				$url = $domain."/cgi-bin/wxis.exe/iah/?IsisScript=iah/iah.xis&base=article^dlibrary&format=iso.pft&lang=i&nextAction=lnk&indexSearch=AU&exprSearch=".$searchText;

				$article_autors .= '<a href="'.$url.'" target="blank">'. $surnameText .", ".$nameText."; </a> ";
			}
		}
	}
		$article_autors = substr($article_autors,0,strlen($article_autors)-1);
		return utf8_encode($article_autors);
}

/**
*Exporta dados bibliográficos para BibTex
*
*Exporta dados bibliográficos para BibTex
*
*@param String entryType Tipo de referencia (livro, artigo, etc) caso seja fornecida uma referencia invalida sera retornada uma msg de erro contendo a lista válida de entidades
*@param Array fields Array associativo 'field' => 'valor', se informado, será ignorado os demais argumentos
*@param String author 
*@param String title
*@param String journal
*@param String volume
*@param String number
*@param String year
*@param String abstract
*@returns String Os dados do artigo no formato BibTex
*/
function export2BibTeX($entryType = '', $fieldsArray=array(), $author = '', $title = '', $journal = '',
																$volume = '', $number = '', $year = '', $abstract = ''){

/**
*"Carimbo" de um registro BibTex
*/

$BibTeXRecord = "@entryType{citKey,\nfields\n}";

/**
*Tipos de entidade padrão
*/
	$entryTypes = array('article', 'book','booklet','conference','inbook','incollection',
									'inproceedings','manual','mastersthesis','misc','phdthesis',
									'proceedings','techreport','unpublished','patent','collection');
/**
*Nomes dos campos padrão
*/
	$fieldNames = array('address', 'annote', 'author', 'booktitle', 'chapter', 'crossref', 'edition', 'editor',
									'howpublished', 'institution', 'journal', 'key', 'month', 'note', 'number', 'organization',
									'pages', 'publisher', 'school', 'series', 'title', 'type', 'volume', 'year', 'affiliation',
									'abstract', 'contents', 'copyright', 'ISBN', 'ISSN', 'keywords', 'language',
									'location', 'LCCN', 'mrnumber', 'price', 'size', 'URL');

	if(!in_array($entryType,$entryTypes))
	{
		return "Os tipos de registro válidos são: ".print_r($entryTypes,true);
	}
/**
* Se esta usando o parametro fields, verifica se todos os nomes de campos estao OK, depois monta o registro
*/


	if(count($fieldsArray) > 0)
	{

		$fieldErrors = "";

		//verificando se os campos sao "validos"
		foreach($fieldsArray as $field => $value )
		{
			if(!in_array($field, $fieldNames)){
				$fieldErrors .= " ". $field ." ";
			}else{
				$fields .= "\t".$field . " = {" .$value."},\n";
			}
		}
		//se tem erros retorna quais os campos invalidos . . .
		if($fieldErrors != "")
		{
			return "Os seguintes campos sao invalidos: " . $fieldErrors;
		}else{
			//tirando a virgula "extra" que sobra
			$fields = substr($fields, 0, strlen($fields)-2);
		}
	}else{
/**
* Se não esta usando o parametro fields, monta o registro com os valores não nulos dos demais parametros
*/	
		$fields = "";


		if($author != ""){
			$fields .= "\tauthor = {".$author."},\n";
		}
		if($title != ""){
			$fields .= "\ttitle = {".$title."},\n";
		}

		if($journal != ""){
			$fields .= "\tjournal = {".$journal."},\n";
		}

		if($volume != ""){
			$fields .= "\tvolume = {".$volume."},\n";
		}
		if($number != ""){
			$fields .= "\tnumber = {".$number."},\n";
		}
		if($year != ""){
			$fields .= "\tyear = {".$year."},\n";
		}
		if($abstract != ""){
			$fields .= "\tabstract = {".$abstract."},\n";
		}

		if($fields != "")
		{
			//tirando a virgula "extra" que sobra
			$fields = substr($fields, 0, strlen($fields)-2);
		}else{
			return "Informe uma matriz contendo os campos=>valores ou preencha os demais parametros de chamada";
		}
	}
/**
* Se ele o PHP chegou até aqui é pq não deu erro.
*/
	$search = array('@entryType@si',"@citKey@si","@fields@si");
	$replace = array($entryType, 'scielo:cit', $fields);

	return preg_replace($search, $replace, $BibTeXRecord);
}


?>
<?
/**
* definiÃ§Ã£o das constantes para os rÃ³tulos dos formulÃ¡rios
* usados para multilanguage
*/

include_once(dirname(__FILE__)."/../../../php/include.php");

$ini = parse_ini_file(dirname(__FILE__)."/../scielo.def.php" , true);
$url = $ini['scielo_org_urls']['home'];

$langs = array("pt","en","es");

if(!in_array($lang,$langs)){
	$lang = "pt";
}

if($lang == "pt")
{
/*
rÃ³tulo tela ofigraph20.php
*/
define("RANKING_MOST_VISITED_JOURNALS","Ranking de revistas mas visitadas");
define("VISITED_ARTICLES_BY_MONTH","NÃºmero de artigos visitados por mÃªs");
define("OFIGRAPH21_SENTENCE1","Artigos visitados em um tÃ­tulo, agrupados por mÃªs");
define("OFIGRAPH21_SENTENCE2","Todos artigos visitados dos seguintes tÃ­tulos");
define("OFIGRAPH21_LIBRARY_COLLECTION","ColeÃ§Ã£o da Biblioteca");
define("OFIGRAPH21_SELECT_JOURNAL","Selecione um tÃ­tulo");
define("OFIGRAPH21_SEE_THE_DATA","veja os dados");


/*
rÃ³tulos tela FAPESP
*/
define("PROJFAPESP","Projetos FAPESP");

/*
rÃ³tulos tela CLINICAL TRIAL
*/
define("CLINICALTRIALS","Ensaios ClÃ­nicos");

/*
rÃ³tulos tela DATASUS
*/
define("DATASUS","Indicadores de SaÃºde");

/*
rÃ³tulos tela Article References
*/
define("SCIELO.ORG"," indicou um artigo para vocÃª.");
define("ARTICLE_REFERENCES","ReferÃªncias do Artigo");
define("ARTICLE_TRANSLATION","TraduÃ§Ã£o automÃ¡tica utilizando o serviÃ§o Windows Live Translator e Google Translator");
define("ARTICLE_TRANSLATION_WARNING","Este serviÃ§o Ã© uma traduÃ§Ã£o automÃ¡tica que nÃ£o foi revista pelo autor e pode ter imperfeiÃ§Ãµes.");
define('NO_DATA_FOR_GRAPHIC','GrÃ¡fico nÃ£o disponÃ­vel, dados em processamento.');

/*
rÃ³tulos para a tela envio de artigo por email
*/
define("TO_EMAIL","Email do destinatÃ¡rio:");
define("TO_NAME","Nome do destinatÃ¡rio:");
define("COMMENTS","ComentÃ¡rios:");
define("ARTICLE_TITLE","TÃ­tulo: ");
define("ARTICLE_SUGGESTION","SciELO: Artigo recomendado de ");
/*
rÃ³tulos para a tela envio de nova senha
*/
define("FORGOT_TITLE","Envio de nova senha");
define("BUTTON_SEND_NEW_PASSORD","Enviar nova senha");
define("UNKNOW_USER_ERROR","UsuÃ¡rio nÃ£o encontrado");
define("SEND_NEW_PASSWORD_SUCCESS","Senha enviada com sucesso !!!");

/*
rÃ³tulos para a tela de login
*/
define("HELLO_STRING","OlÃ¡, ");
define("EDIT_USER_DATA","Meus dados");
define("LOGIN_TITLE","Login de usuÃ¡rio");
define("BUTTON_LOGIN","Login");
define("BUTTON_LOGOUT","Sair");
define("FORGOT_PASSWORD","Enviar-me nova senha  ");
define("REGISTER","Cadastre-se");
define("FOR_SERVICES","para serviÃ§os personalizados");
define("LOGIN_ERROR","Login/Senha invÃ¡lidos");
define("FIELD_LOGIN_ALREADY_EXISTS","Login jÃ¡ existe !!!");
define("REQUIRED_FIELD_TEXT"," * Campos ObrigatÃ³rios");
define("LOGOUT_DONE","Logout realizado com sucesso !!!");
define("NOT_LOGED","UsuÃ¡rio nÃ£o logado, por favor, visite <a target=\"_blank\" href=\"".$url."\">Scielo</a> e se logue");

/*
rotulos da tela de cadastro/alteracao de usuario
*/
define("REGISTER_NEW_USER_TITLE","Cadastro de Novo UsuÃ¡rio");
define("UPDATE_USER_TITLE","AtualizaÃ§Ã£o dos dados");
define("FIELD_FIRST_NAME","Nome");
define("FIELD_LAST_NAME","Sobrenome");
define("FIELD_GENDER","Sexo");
define("FIELD_GENDER_MALE","Masculino");
define("FIELD_GENDER_FEMALE","Feminino");
define("FIELD_PASSWORD","Senha");
define("FIELD_PASSWORD_CONFIRMATION","ConfirmaÃ§Ã£o");
define("FIELD_PASSWORD_CHANGE_MESSAGE","(somente preencha caso deseje alterar sua senha)");
define("FIELD_EMAIL","E-Mail");
define("FIELD_LOGIN","Login");
define("FIELD_AFILIATION","InstituiÃ§Ã£o");
define("FIELD_DEGREE","Select|Selecione,Ensino_Fundamental|Ensino Fundamental (1o Grau),Ensino_Medio|Ensino MÃ©dio (2o Grau),Ensino_Tecnico|Ensino Profissional De NÃ­vel TÃ©cnico,Graduacao|GraduaÃ§Ã£o,Especializacao|EspecializaÃ§Ã£o,Mestrado_Profissionalizante|Mestrado Profissionalizante,Mestrado|Mestrado,Doutorado|Doutorado,MBA|MBA,Pos_Doutorado|PÃ³s Doutorado,PHD|PHD");
define("STEP","Passo");
define("OF","de");

/*
rÃ³tulos para o cadastro de avise-me
*/
define("ADD_TO_SHELF_OK","Artigo adicionado Ã  coleÃ§Ã£o com sucesso !!!");
define("REMOVE_FROM_SHELF_OK","Artigo removido da coleÃ§Ã£o com sucesso !!!");
define("REMOVE_CITED_ALERT_OK","Alerta de citaÃ§Ã£o removido com sucesso !!!");
define("REMOVE_ACCESS_ALERT_OK","Alerta de acesso removido com sucesso !!!");
define("ALERT_CITED_OK","Aviso quando for citado cadastrado com sucesso !!!");
define("ALERT_ACCESSED_OK","Cadastro para envio de estatÃ­sticas de acesso realizado com sucesso !!!");

/*
rÃ³tulos dos links para os serviÃ§os de usuÃ¡rios
*/
define("PERSONAL_DATA","Dados pessoais");
define("PROFILE","Perfil");
define("PROFILES","Perfis");
define("VIEW_BY","Visualizar Lista por");
define("MY_SHELF","Minha ColeÃ§Ã£o");
define("MY_LINKS","Meus Links");
define("MY_NEWS","Minhas Noticias");
define("MY_ARTICLE_PROFILE","Artigos do Perfil");
define("MY_NEW_ARTICLE_PROFILE","Artigos Novos do Perfil");
define("ORDER_BY","Ordenado por");
define("RELEVANCE","RelevÃ¢ncia");
define("DATE","Data");
define("MY_ALERTS","Meus Alertas");
define("REMOVE_FROM_SHELF","Remover da coleÃ§Ã£o");
define("CITATIONS","CitaÃ§Ãµes");
define("ACCESS_STATS","EstatÃ­sticas de acessos");
define("ARTICLE_ACCESS","Acessos ao Artigo");
define("ACCESSES","Acessos");
define("MONTHS","Meses");
define("REMOVE_ALERT","Remover alerta");
define("REMOVE_ACCESS_ALERT","NÃ£o receber mais alertas de acessos desse artigo");
define("REMOVE_CITED_ALTER","NÃ£o receber mais alertas de citaÃ§Ã£o desse artigo");
define("MONTH_LIST", "jan,fev,mar,abr,mai,jun,jul,ago,set,out,nov,dez");
define("CITED_BY","Citado Por");
define("SIMILARYS_IN","Similares em");
define("COMMENTS_ARTICLE","ComentÃ¡rios");
define("COMMENTS_ADD","(Adicionar ComentÃ¡rios)");
define("COMMENTS_USER_AUTHOR","*Nome: ");
define("COMMNETS_USER_EMAIL","*Email: ");
define("COMMNETS_USER_BUTTON","Enviar");
define("COMMNETS_USER_COMMENT","*ComentÃ¡rio:");
define("COMMNETS_MESSAGE_BLOG_INI","Por favor efetuar ");
define("COMMNETS_MESSAGE_BLOG_FIM"," se deseja enviar um comentÃ¡rio.");
define("COMMNETS_DONT_BLOG","Esta revista nÃ£o pode receber comentÃ¡rios.");
define("COMMNETS_MESSAGE_ERRO_1","Desculpe, mas vocÃª sÃ³ pode postar um novo comentÃ¡rio uma vez a cada 15 segundos.");
define("COMMNETS_MESSAGE_ERRO_2","Menssagem enviada anteriormente.");
define("COMMNETS_MESSAGE_INFO_1","ComentÃ¡rio enviado por: ");
define("COMMNETS_MESSAGE_INFO_2",", aguarde aprovaÃ§Ã£o.");
define("CHAR_LIMIT","Limite de 1024 caracteres | restantes : ");
define("SEE","Ver");
define("SEE_HISTORY","Ver HistÃ³rico");
define("CHOOSE_PERIOD", "Escolha por ano:");
define("START_YEAR", "De:");
define("LAST_YEAR", "AtÃ©:");
define("BUTTON_REFRESH", "Atualizar grÃ¡fico");
define("GRAFIC_STATS_FALSE", "NÃ£o existem dados estatÃ­sticos para o perÃ­odo selecionado");
/*
define("ENGLISH_GERMAN","InglÃªs->AlemÃ£o");
define("ENGLISH_ARABIC","InglÃªs->Ãrabe");
define("ENGLISH_CHINESE_S","InglÃªs->Chines simplificado");
define("ENGLISH_CHINESE_T","InglÃªs->Chines tradicional");
define("ENGLISH_KOREAN","InglÃªs->Coreano");
define("ENGLISH_SPANISH","InglÃªs->Espanhol");
define("ENGLISH_FRENCH","InglÃªs->FrancÃªs");
define("ENGLISH_DUTCH","InglÃªs->HolandÃªs");
define("ENGLISH_ITALIAN","InglÃªs->Italiano");
define("ENGLISH_JAPANESE","InglÃªs->JaponÃªs");
define("ENGLISH_PORTUGUESE","InglÃªs->PortuguÃªs");
define("FRENCH_GERMAN","FrancÃªs->AlemÃ£o");
define("FRENCH_ENGLISH","FrancÃªs->InglÃªs");
define("SPANISH_ENGLISH","Espanhol->InglÃªs");
define("PORTUGUESE_ENGLISH","PortuguÃªs->InglÃªs");
*/
/*
textos das mensagens de erro
*/
define("FIELD_FIRST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_LAST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_GENDER_ERROR_DESCRIPTION","*");
define("FIELD_PASSWORD_ERROR_DESCRIPTION","*");
define("FIELD_EMAIL_ERROR_DESCRIPTION","*");
define("FIELD_LOGIN_ERROR_DESCRIPTION","*");
define("FIELD_PROFILE_ONE","Perfil 1");
define("FIELD_PROFILE_TWO","Perfil 2");
define("FIELD_PROFILE_TREE","Perfil 3");
define("FIELD_PROFILE_NAME","Nome");
define("FIELD_PROFILE_DESCRIPTION_TEXT","DescriÃ§Ã£o");
define("BUTTON_NEW_USER","Gravar");
define("BUTTON_UPDATE_USER","Atualizar");
define("BUTTON_BACK","Voltar");
define("BUTTON_CANCEL","Cancelar");
define("BUTTON_CLOSE","Fechar");
define("REGISTER_NEW_USER_SUCESS","Dados Gravados com sucesso !!!");
define("UPDATE_USER_SUCESS","Dados Atualizados com sucesso !!!");

/*
textos para a paginaÃ§Ã£o
*/
define("FIRST_PAGE","Primeira");
define("LAST_PAGE","Ãšltima");
define("PAGE","PÃ¡gina");

/*
textos para a rÃ©gua de navegaÃ§Ã£o
*/
define("HOME","home");
define("SEARCH_JOURNALS","Pesquisa periÃ³dicos");
define("JOURNALS_ALPHABETIC_LIST","PeriÃ³dicos por ordem alfabÃ©tica");

/*
segundo nivel SciELO em nÃºmeros
*/
define("NUMBERS","SciELO em nÃºmeros");
define("CITATION","CitaÃ§Ãµes");
define("CO_AUTHORS","Co-autoria");
define("USAGE","Uso do site");
define("BRASIL","Brasil");
define("CHILE","Chile");
define("CUBA","Cuba");
define("PUBLIC_HEALTH","SaÃºde PÃºblica");
define("SPAIN","Espanha");
define("VENEZUELA","Venezuela");

/*
pesquisa por titulos
*/
define("FIND_RESULTS","resultados encontrados :");

/*
artigos do meu perfil
*/
define("TOOLS","Ferramentas");

/*
minhas noticias
*/
define("ADD","Adicionar");
define("ADD_FEED","Adicionar RSS Feed");
define("REMOVE_FEED","Remover RSS Feed");
define("RSS_PROBLEM","Ocorreu um erro ao tentar abrir o RSS Feed");
define("REMOVE_FEED_CONFIRM","Confirma a remoÃ§Ã£o do Feed ?");
define("PUBLISH_IN_HOME_PAGE","Publicar na Home Page");
define("REMOVE_FROM_HOME_PAGE","Remover da Home Page");
define("ALL_FEEDS","Todos os Feeds");
/*
meus links
*/
define("ADD_LINK","Adicionar Link");

/*
	USER SHELF FOLDERS
*/

define("MONITORED_ACCESS","acesso monitorado");
define("MONITORED_CITATIONS","citaÃ§Ãµes monitoradas");
define("MOVE_TO","mover para");
define("MY_FOLDERS","Minhas Pastas");
define("ADD_FOLDER","Adicionar pasta");
define("INCOMING_FOLDER","Pasta de Entrada");
define("DATE_SORT","Data");
define("MY_RANKING","Meu ranking");
define("EDIT_FOLDER","Editar Pasta");
define("DELETE_FOLDER","Remover Pasta");
define("FOLDER_NAME","Nome da Pasta");
define("MOVE_FOLDER_TO","Mover Para");
define("BUTTON_MOVE","mover");
define("BUTTON_CANCEL","cancelar");
define("BUTTON_REMOVE","remover");
define("BUTTON_EDIT","editar");
define("BUTTON_CREATE","salvar");
define("MOVE_CONTENT_TO_OTHER_FOLDER","mover conteÃºdo para outra pasta");
define("REMOVE_CONTENT","remover conteÃºdo");
define("SHOW_BY_RATE"," por Ranking");
define("SHOW_BY_DATE"," por Data");

/*
 USER LINKS
*/

define("REMOVE_LINK","deletar link");
define("EDIT_LINK","editar link");
define("ADD_LINK","Incluir link");
define("LINK_TITLE","TÃ­tulo do Link");
define("LINK_URL","URL do Link");
define("LINK_DESCRIPTION","DescriÃ§Ã£o do Link");
define("IN_HOME","pÃ¡gina inicial");
define("DO_YOU_REALY_WANT_TO_REMOVE_IT","Deseja realmente excluir este link?");
define("ENVIAR_ARTIGO_POR_EMAIL","Enviar artigo por e-mail");
define("SEND","enviar e-mail");
define("CLOSE","fechar janela");
define("ARTICLE_SUBMITED_WITH_SUCCESS","artigo enviado com sucesso");
define("SEARCHING_IN","buscando em");
define("SIMILARITY","relevÃ¢ncia");
/*
Collexis Instances Name
*/
define("ARR","SCI_OVERALL|SciELO Regional,SCI_SCIELOBR|SciELO Brasil,SCI_SCIELOCL|SciELO Chile,SCI_SCIELOCB|SciELO Cuba,SCI_SCIELOESP| SciELO Espanha,SCI_SCIELOVE|SciELO Venezuela,SCI_SCIELOSP|SciELO SaÃºde PÃºblica,SCI_SCIELOSS|SciELO CiÃªncias Sociais");

define("FULL_TEXT","texto completo");
}


if ($lang=="en")
{

define("RANKING_MOST_VISITED_JOURNALS","Ranking of most visited journals");
define("VISITED_ARTICLES_BY_MONTH","Number of articles visited by month");
define("OFIGRAPH21_SENTENCE1","Articles visited in al journals, grouping by month.");
define("OFIGRAPH21_SENTENCE2","All visited articles of the following journals");
define("OFIGRAPH21_LIBRARY_COLLECTION","Library Collection");
define("OFIGRAPH21_SELECT_JOURNAL","Select some Journals");
define("OFIGRAPH21_SEE_THE_DATA","see the data");


/*
rÃ³tulos tela FAPESP
*/
define("PROJFAPESP","FAPESP Projects");

/*
rÃ³tulo tela CLINICAL TRIALS
*/
define("CLINICALTRIALS","Clinical Trials");

/*
rÃ³tulos tela DATASUS
*/
define("DATASUS","Health Indicators");

/*
rÃ³tulos tela Article References
*/

define("ARTICLE_REFERENCES","Article References");
define("ARTICLE_TRANSLATION","Automatic translation using Windows Live Translator and Google Translator service");
define("ARTICLE_TRANSLATION_WARNING","This is an automatic translation that represents a best effort but it was not reviewed by the author and might have imperfections.");
define('NO_DATA_FOR_GRAPHIC','Graphic unavailable, data in processing.');

/*
rÃ³tulos para a tela envio de artigo por email
*/
define("TO_EMAIL","To Email:");
define("TO_NAME","To:");
define("COMMENTS","Comments:");
define("ARTICLE_TITLE","Title: ");
define("ARTICLE_SUGGESTION","SciELO: Recommended article from ");

/*
rÃ³tulos para a tela envio de nova senha
*/
define("FORGOT_TITLE","New password send");
define("BUTTON_SEND_NEW_PASSORD","Send new password");
define("UNKNOW_USER_ERROR","User not found");
define("SEND_NEW_PASSWORD_SUCCESS","New password sent successfully !!!");

/*
rÃ³tulos para a tela de login
*/
define("HELLO_STRING","Hello, ");
define("EDIT_USER_DATA","Edit user data");
define("LOGIN_TITLE","User Login");
define("BUTTON_LOGIN","Login");
define("BUTTON_LOGOUT","Logout");
define("FORGOT_PASSWORD","Send me a new password");
define("REGISTER","Register");
define("FOR_SERVICES","for personalized services");
define("LOGIN_ERROR","User/Login invalid");
define("LOGOUT_DONE","Logout was made successfully !!!");
define("NOT_LOGED","User not logged, please, visit <a target=\"_blank\" href=\"".$url."\">Scielo</a> and log in");

/*
rotulos da tela de cadastro/alteracao de usuario
*/
define("REGISTER_NEW_USER_TITLE","New user registration");
define("UPDATE_USER_TITLE","Update user data");
define("FIELD_FIRST_NAME","First Name");
define("FIELD_LAST_NAME","Last Name");
define("FIELD_GENDER","Gender");
define("FIELD_GENDER_MALE","Male");
define("FIELD_GENDER_FEMALE","Female");
define("FIELD_PASSWORD","Password");
define("FIELD_PASSWORD_CONFIRMATION","Confirmation");
define("FIELD_PASSWORD_CHANGE_MESSAGE","(fill it in only to change the password)");
define("FIELD_EMAIL","E-Mail");
define("FIELD_LOGIN","Login");
define("FIELD_AFILIATION","Afilliation");
define("FIELD_DEGREE","Select|Select,Ensino_Fundamental|Basic Education,Ensino_Medio|High School,Ensino_Tecnico|Technical Studies,Graduacao|Graduate Study,Especializacao|Specialization,Mestrado_Profissionalizante|Professional Master's Degree,Mestrado|Master's Degree,Doutorado|Doctorate,MBA|MBA,Pos_Doutorado|Post Doctorate,PHD|PhD");
define("FIELD_LOGIN_ALREADY_EXISTS","Login already exists !!!");
define("REQUIRED_FIELD_TEXT"," * Mandatory fields");
define("STEP","Step");
define("OF","of");

/*
rÃ³tulos para o cadastro de avise-me
*/
define("ADD_TO_SHELF_OK","Article added to collection successfully !!!");
define("REMOVE_FROM_SHELF_OK","Article removed from collection successfully !!!");
define("REMOVE_CITED_ALERT_OK","Citation alert removed successfully !!!");
define("REMOVE_ACCESS_ALERT_OK","Access alert removed successfully !!!");
define("ALERT_CITED_OK","Acknowledgment when article will be cited registered successfully !!!");
define("ALERT_ACCESSED_OK","Registration to receive statistics of access was made successfully !!!");

/*
rÃ³tulos dos links para os serviÃ§os de usuÃ¡rios
*/
define("PERSONAL_DATA","Personal data");
define("PROFILE","Profile");
define("PROFILES","Profiles");
define("VIEW_BY","View list by");
define("MY_SHELF","My Collection");
define("MY_LINKS","My Links");
define("MY_NEWS","My News");
define("MY_ARTICLE_PROFILE","Articles of my profiles");
define("MY_NEW_ARTICLE_PROFILE","New articles of my profiles");
define("ORDER_BY","Sorted by");
define("RELEVANCE","Relevance");
define("DATE","Date");
define("MY_ALERTS","My Alerts");
define("REMOVE_FROM_SHELF","Remove from collection");
define("CITATIONS","Citations");
define("ACCESS_STATS","Access Stats");
define("ARTICLE_ACCESS","Article Access");
define("ACCESSES","Access");
define("MONTHS","Months");
define("REMOVE_ALERT","Remove alert");
define("REMOVE_ACCESS_ALERT","I do not want to receive any further alerts of accesses of  this article");
define("REMOVE_CITED_ALTER","I do not want to receive any further alerts of citations to  this article");
define("MONTH_LIST", "Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sept,Oct,Nov,Dec");
define("CITED_BY","Cited By");
define("SIMILARYS_IN","Similars in");
define("COMMENTS_ARTICLE","Comments");
define("COMMENTS_ADD","(Add Comments)");
define("COMMENTS_USER_AUTHOR","*Name: ");
define("COMMNETS_USER_EMAIL","*Email: ");
define("COMMNETS_USER_BUTTON","Send");
define("COMMNETS_USER_COMMENT","*Comments:");
define("COMMNETS_MESSAGE_BLOG_INI","Please ");
define("COMMNETS_MESSAGE_BLOG_FIM"," if you want to submit a comment.");
define("COMMNETS_DONT_BLOG","This journal can't receive comments");
define("COMMNETS_MESSAGE_ERRO_1","Sorry, you can only post a new comment once every 15 seconds. Slow down.");
define("COMMNETS_MESSAGE_ERRO_2","You've said that before. No need to repeat yourself.");
define("COMMNETS_MESSAGE_INFO_1","Comment sent by: "); 
define("COMMNETS_MESSAGE_INFO_2",", waiting approve.");
define("CHAR_LIMIT","Limit of 1024 characters | remaining: ");

define("SEE","See");
define("SEE_HISTORY","See History");
define("CHOOSE_PERIOD", "Choose by Year:");
define("START_YEAR", "From:");
define("LAST_YEAR", "To:");
define("BUTTON_REFRESH", "Change graphic");
define("GRAFIC_STATS_FALSE", "Do not exists statistic data for the selected period");

define("ENGLISH_GERMAN","English->German");
define("ENGLISH_ARABIC","English->Arabic");
define("ENGLISH_CHINESE_S","English->Chinese simplified");
define("ENGLISH_CHINESE_T","English->Chinese traditional");
define("ENGLISH_KOREAN","English->Korean");
define("ENGLISH_SPANISH","English->Spanish");
define("ENGLISH_FRENCH","English->French");
define("ENGLISH_DUTCH","English->Dutch");
define("ENGLISH_ITALIAN","English->Italian");
define("ENGLISH_JAPANESE","English->Japanese");
define("ENGLISH_PORTUGUESE","English->Portuguese");
define("FRENCH_GERMAN","French->German");
define("FRENCH_ENGLISH","French->English");
define("SPANISH_ENGLISH","Spanish->English");
define("PORTUGUESE_ENGLISH","Portuguese->English");

/*
textos das mensagens de erro
*/
define("FIELD_FIRST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_LAST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_GENDER_ERROR_DESCRIPTION","*");
define("FIELD_PASSWORD_ERROR_DESCRIPTION","*");
define("FIELD_EMAIL_ERROR_DESCRIPTION","*");
define("FIELD_LOGIN_ERROR_DESCRIPTION","*");
define("FIELD_PROFILE_ONE","Profile 1");
define("FIELD_PROFILE_TWO","Profile 2");
define("FIELD_PROFILE_TREE","Profile 3");
define("FIELD_PROFILE_NAME","Name");
define("FIELD_PROFILE_DESCRIPTION_TEXT","Description");
define("BUTTON_NEW_USER","Record");
define("BUTTON_UPDATE_USER","Update");
define("BUTTON_BACK","Back");
define("BUTTON_CANCEL","Cancel");
define("BUTTON_CLOSE","Close");
define("REGISTER_NEW_USER_SUCESS","New user registration done successfully !!!");
define("UPDATE_USER_SUCESS","Update user data successfully !!!");

/*
textos para a paginaÃ§Ã£o
*/
define("FIRST_PAGE","First");
define("LAST_PAGE","Last");
define("PAGE","Page");

/*
textos para a rÃ©gua de navegaÃ§Ã£o
*/
define("HOME","home");
define("SEARCH_JOURNALS","Search by journals");
define("JOURNALS_ALPHABETIC_LIST","PeriÃ³dicos por ordem alfabÃ©tica");

/*
segundo nivel SciELO em nÃºmeros
*/
define("NUMBERS","SciELO in numbers");
define("CITATION","Citations");
define("CO_AUTHORS","Co-authors");
define("USAGE","Site usage");
define("BRASIL","Brasil");
define("CHILE","Chile");
define("CUBA","Cuba");
define("PUBLIC_HEALTH","Public Health");
define("SPAIN","Spain");
define("VENEZUELA","Venezuela");

/*
pesquisa por titulos
*/
define("FIND_RESULTS","results :");

/*
artigos do meu perfil
*/
define("TOOLS","Tools");

/*
minhas noticias
*/
define("ADD","Add");
define("ADD_FEED","Add RSS Feed");
define("REMOVE_FEED","Remove RSS Feed");
define("RSS_PROBLEM","An error has occurred when trying open the RSS Feed");
define("REMOVE_FEED_CONFIRM","Are you sure ?");
define("PUBLISH_IN_HOME_PAGE","Publish in Home Page");
define("REMOVE_FROM_HOME_PAGE","Remove from Home Page");
define("ALL_FEEDS","All Feeds");


/*
	USER SHELF FOLDERS
*/

define("MONITORED_ACCESS","monitored access");
define("MONITORED_CITATIONS","monitored citations");
define("MOVE_TO","move to");
define("MY_FOLDERS","My Folders");
define("ADD_FOLDER","Add folder");
define("INCOMING_FOLDER","Incoming Folder");
define("SHOW_FOLDERLIST_BY","show list by:");
define("DATE_SORT","Date");
define("MY_RANKING","My ranking");
define("EDIT_FOLDER","Edit Folder");
define("DELETE_FOLDER","Remove Folder");
define("FOLDER_NAME","Folder Name");
define("MOVE_FOLDER_TO","Move to");
define("BUTTON_MOVE","move");
define("BUTTON_CANCEL","cancel");
define("BUTTON_REMOVE","remove");
define("BUTTON_EDIT","edit");
define("BUTTON_CREATE","create");
define("MOVE_CONTENT_TO_OTHER_FOLDER","move content to another folder");
define("REMOVE_CONTENT","remove content");
define("SHOW_BY_RATE"," by Ranking");
define("SHOW_BY_DATE"," by Date");

/*
 USER LINKS
*/

define("REMOVE_LINK","delete link");
define("EDIT_LINK","edit link");
define("ADD_LINK","add link");
define("LINK_TITLE","Link Title");
define("LINK_URL","Link URL");
define("LINK_DESCRIPTION","Link Description");
define("IN_HOME","show in home");
define("DO_YOU_REALY_WANT_TO_REMOVE_IT","Do you realy want to remove it?");
define("ENVIAR_ARTIGO_POR_EMAIL","Send article by mail");
define("SEND","send mail");
define("CLOSE","close window");
define("ARTICLE_SUBMITED_WITH_SUCCESS","article submited with success");
define("SEARCHING_IN","searching in");
define("SIMILARITY","similarity");
/*
Collexis Instances Name
*/
define("ARR","SCI_OVERALL|SciELO Regional,SCI_SCIELOBR|SciELO Brazil,SCI_SCIELOCL|SciELO Chile,SCI_SCIELOCB|SciELO Cuba,SCI_SCIELOESP| SciELO Spain,SCI_SCIELOVE|SciELO Venezuela,SCI_SCIELOSP|SciELO Public Health,SCI_SCIELOSS|SciELO Social Sciences");

define("FULL_TEXT","full text");
}

if ($lang=="es")
{

define("RANKING_MOST_VISITED_JOURNALS","Ranking de los periÃ³dicos mas accesados");
define("VISITED_ARTICLES_BY_MONTH","El numero de articulos visitados por mes");
define("OFIGRAPH21_SENTENCE1","los articulos visitados de todas las revistas, agrupado por mes.");
define("OFIGRAPH21_SENTENCE2","Todos los articulos visitados, de lso siguientes titulos");
define("OFIGRAPH21_LIBRARY_COLLECTION","ColecciÃ³n de la Biblioteca");
define("OFIGRAPH21_SELECT_JOURNAL","Elija algunos periÃ³dicos");
define("OFIGRAPH21_SEE_THE_DATA","vea los datos");

/*
rÃ³tulos tela FAPESP
*/
define("PROJFAPESP","Proyectos FAPESP");

/*
rÃ³tulo tela CLINICAL TRIALS
*/
define("CLINICALTRIALS","Ensayos ClÃ­nicos");

/*
rÃ³tulos tela DATASUS
*/
define("DATASUS","Indicadores de Salud");

/*
rÃ³tulos tela Article References
*/

define("ARTICLE_REFERENCES","Referencias del artÃ­culo");
define("ARTICLE_TRANSLATION","TraducciÃ³n automÃ¡tica utilizando el servicio Windows Live Translator y Google Translator ");
define("ARTICLE_TRANSLATION_WARNING","Ese servicio es una traducciÃ³n automÃ¡tica que no fue revisada por el autor y puede tener imperfecciones.");
define('NO_DATA_FOR_GRAPHIC','GrÃ¡fico no disponible, datos en procesamiento.');

/*
rÃ³tulos para a tela envio de artigo por email
*/
define("TO_EMAIL","Correo ElectrÃ³nico del Destinatario:");
define("TO_NAME","Destinatario:");
define("COMMENTS","ComentÃ¡rios:");
define("ARTICLE_TITLE","TÃ­tulo: ");
define("ARTICLE_SUGGESTION","SciELO: ArtÃ­culo recomendado de ");

/*
rÃ³tulos para a tela envio de nova senha
*/
define("HELLO_STRING","Hola, ");
define("FORGOT_TITLE","Nueva clave de acceso");
define("BUTTON_SEND_NEW_PASSORD","EnvÃ­o de nueva clave de acceso");
define("UNKNOW_USER_ERROR","Usuario no encontrado");
define("SEND_NEW_PASSWORD_SUCCESS","Clave de acceso enviada con Ã©xito");

/*
rÃ³tulos para a tela de login
*/
define("LOGIN_TITLE","Login de usuario");
define("EDIT_USER_DATA","Actualizar los datos personales");
define("BUTTON_LOGIN","Login");
define("BUTTON_LOGOUT","Salir");
define("FORGOT_PASSWORD","EnvÃ­eme una nueva clave de acceso");
define("REGISTER","RegÃ­strese");
define("FOR_SERVICES","para servicios personalizados");
define("LOGIN_ERROR","Usuario/Clave invÃ¡lidos");
define("LOGOUT_DONE","Logout realizado con Ã©xito!!!");
define("NOT_LOGED","Usuario no logado, por favor, visitar <a target=\"_blank\" href=\"".$url."\">Scielo</a> y entrar");

/*
rotulos da tela de cadastro/alteracao de usuario
*/
define("REGISTER_NEW_USER_TITLE","Registro de nuevo usuario");
define("UPDATE_USER_TITLE","ActualizaciÃ³n de sus datos");
define("FIELD_FIRST_NAME","Nombre");
define("FIELD_LAST_NAME","Apellido");
define("FIELD_GENDER","GÃ©nero");
define("FIELD_GENDER_MALE","Masculino");
define("FIELD_GENDER_FEMALE","Femenino");
define("FIELD_PASSWORD","Clave de acceso");
define("FIELD_PASSWORD_CONFIRMATION","ConfirmaciÃ³n");
define("FIELD_PASSWORD_CHANGE_MESSAGE","(Llene apenas si desea cambiar su clave de acceso)");
define("FIELD_EMAIL","Correo ElectrÃ³nico");
define("FIELD_LOGIN","Login");
define("FIELD_AFILIATION","InstituiciÃ³n");
define("FIELD_DEGREE","Select|Selecione,Ensino_Fundamental|EnseÃ±anza o EducaciÃ³n BÃ¡sica,Ensino_Medio|EnseÃ±anza o EducaciÃ³n Media,Ensino_Tecnico|EnseÃ±anza o EducaciÃ³n TÃ©cnico-Profesional,Graduacao|Superior Universitario de Grado,Especializacao|EspecializaciÃ³n,Mestrado_Profissionalizante|MaestrÃ­a Profisionalizante,Mestrado|MaestrÃ­a,Doutorado|Doctorado,MBA|MBA,Pos_Doutorado|Pos Doctorado,PHD|PhD");
define("FIELD_LOGIN_ALREADY_EXISTS","Login ya existe !!!");
define("REQUIRED_FIELD_TEXT"," * Campos obligatorios");
define("STEP","Passo");
define("OF","de");

/*
rÃ³tulos para o cadastro de avise-me
*/
define("ADD_TO_SHELF_OK","Artigo adicionado a la colecciÃ³n");
define("REMOVE_FROM_SHELF_OK","Artigo retirado de la colecciÃ³n");
define("REMOVE_CITED_ALERT_OK","Alerta de citaciÃ³n retirado");
define("REMOVE_ACCESS_ALERT_OK","Alerta de acesso retirado");
define("ALERT_CITED_OK","Alerta de cuando el artÃ­culo es citado fue registrado con Ã©xito");
define("ALERT_ACCESSED_OK","Registro para recibimiento de estadÃ­sticas de acceso del artÃ­culo realizado con Ã©xito");

/*
rÃ³tulos dos links para os serviÃ§os de usuÃ¡rios
*/
define("PERSONAL_DATA","Datos personales");
define("PROFILE","Perfil");
define("PROFILES","Perfiles");
define("VIEW_BY","Ver la Lista por");
define("MY_SHELF","Mi ColecciÃ³n");
define("MY_LINKS","Mis Enlaces");
define("MY_NEWS","Mis NotÃ­cias");
define("MY_ARTICLE_PROFILE","ArtÃ­culos de mi perfil");
define("MY_NEW_ARTICLE_PROFILE","ArtÃ­culos nuevos de mi perfil");
define("ORDER_BY","Ordenado por");
define("RELEVANCE","Relevancia");
define("DATE","Fecha");
define("MY_ALERTS","Mis Alertas");
define("REMOVE_FROM_SHELF","Retirar de mi colecciÃ³n");
define("CITATIONS","Citaciones");
define("ACCESS_STATS","EstadÃ­sticas de accesos");
define("ARTICLE_ACCESS","Accesos al artÃ­culo");
define("ACCESSES","Accesos");
define("MONTHS","Meses");
define("REMOVE_ALERT","Retirar alerta");
define("REMOVE_ACCESS_ALERT","No quiero mÃ¡s recibir alertas de accessos de este artÃ­culo");
define("REMOVE_CITED_ALTER","No quiero mÃ¡s recibir alertas de citaciones a este artÃ­culo");
define("MONTH_LIST", "ene,feb,mar,abr,mayo,jun,jul,ago,sept,oct,nov,dic");
define("CITED_BY","Citado Por");
define("SIMILARYS_IN","Similares en");
define("COMMENTS_ARTICLE","Comentarios");
define("COMMENTS_ADD","(AÃ±adir Comentarios)");
define("COMMENTS_USER_AUTHOR","*Nombre: ");
define("COMMNETS_USER_EMAIL","*Email: ");
define("COMMNETS_USER_BUTTON","Enviar");
define("COMMNETS_USER_COMMENT","*Comentario:");
define("COMMNETS_MESSAGE_BLOG_INI","Por favor, haga el ");
define("COMMNETS_MESSAGE_BLOG_FIM"," para enviar un comentario a ese artÃ­culo.");
define("COMMNETS_DONT_BLOG","Disculpa, ese artÃ­culo no podrÃ¡ ser comentado.");
define("COMMNETS_MESSAGE_ERRO_1","Disculpa, mas usted solamente podrÃ¡ enviar un nuevo comentario una vez a cada 15 segundos.");
define("COMMNETS_MESSAGE_INFO_1","Comentario enviado por: ");
define("COMMNETS_MESSAGE_INFO_2",", aguarde aprobaciÃ³n.");
define("CHAR_LIMIT","limite de 1024 caracteres | restantes : ");

define("SEE","Ver");
define("SEE_HISTORY","Ver HistÃ³rico");
define("CHOOSE_PERIOD", "Elegir por aÃ±o:");
define("START_YEAR", "De:");
define("LAST_YEAR", "Hasta:");
define("BUTTON_REFRESH", "Actualizar grÃ¡fico");
define("GRAFIC_STATS_FALSE", "No hay datos estadÃ­sticos para el periodo elegido");

define("ENGLISH_GERMAN","InglÃ©s->AlemÃ¡n");
define("ENGLISH_ARABIC","InglÃ©s->Ãrabe");
define("ENGLISH_CHINESE_S","InglÃ©s->Chino simplificado");
define("ENGLISH_CHINESE_T","InglÃ©s->Chino tradicional");
define("ENGLISH_KOREAN","InglÃ©s->Coreano");
define("ENGLISH_SPANISH","InglÃ©s->EspaÃ±ol");
define("ENGLISH_FRENCH","InglÃ©s->FrancÃ©s");
define("ENGLISH_DUTCH","InglÃ©s->NeerlandÃ©s");
define("ENGLISH_ITALIAN","InglÃ©s->Italiano");
define("ENGLISH_JAPANESE","InglÃ©s->JaponÃ©s");
define("ENGLISH_PORTUGUESE","InglÃ©s->PortuguÃ©s");
define("FRENCH_GERMAN","FrancÃ©s->AlemÃ¡n");
define("FRENCH_ENGLISH","FrancÃ©s->InglÃ©s");
define("SPANISH_ENGLISH","EspaÃ±ol->InglÃ©s");
define("PORTUGUESE_ENGLISH","PortuguÃ©s->InglÃ©s");

/*
textos das mensagens de erro
*/
define("FIELD_FIRST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_LAST_NAME_ERROR_DESCRIPTION","*");
define("FIELD_GENDER_ERROR_DESCRIPTION","*");
define("FIELD_PASSWORD_ERROR_DESCRIPTION","*");
define("FIELD_EMAIL_ERROR_DESCRIPTION","*");
define("FIELD_LOGIN_ERROR_DESCRIPTION","*");
define("FIELD_PROFILE_ONE","Perfil 1");
define("FIELD_PROFILE_TWO","Perfil 2");
define("FIELD_PROFILE_TREE","Perfil 3");
define("FIELD_PROFILE_NAME","TÃ­tulo");
define("FIELD_PROFILE_DESCRIPTION_TEXT","DescripciÃ³n");
define("BUTTON_NEW_USER","Record");
define("BUTTON_UPDATE_USER","Update");
define("BUTTON_BACK","Volver");
define("BUTTON_CANCEL","Cancelar");
define("BUTTON_CLOSE","Cerrar");
define("REGISTER_NEW_USER_SUCESS","Nuevo usuario registrado con Ã©xito");
define("UPDATE_USER_SUCESS","ActualizaciÃ³n de datos hecha con Ã©xito");

/*
textos para a paginaÃ§Ã£o
*/
define("FIRST_PAGE","Primera ");
define("LAST_PAGE","Ãšltima");
define("PAGE","PÃ¡gina");

define("HOME","home");
define("SEARCH_JOURNALS","BÃºsqueda por PeriÃ³dicos");
define("JOURNALS_ALPHABETIC_LIST","PeriÃ³dicos por ordem alfabÃ©tica");

/*
segundo nivel SciELO em nÃºmeros
*/
define("NUMBERS","SciELO en nÃºmeros");
define("CITATION","Citas de revistas");
define("CO_AUTHORS","Co-autoria");
define("USAGE","Uso del sitio");
define("BRASIL","Brasil");
define("CHILE","Chile");
define("CUBA","Cuba");
define("PUBLIC_HEALTH","Salud PÃºblica");
define("SPAIN","EspaÃ±a");
define("VENEZUELA","Venezuela");

/*
pesquisa por titulos
*/
define("FIND_RESULTS","resultados encontrados :");

/*
artigos do meu perfil
*/
define("TOOLS","Herramientas");

/*
minhas noticias
*/
define("ADD","AÃ±adir RSS Feed");
define("ADD_FEED","AÃ±adir RSS Feed");
define("REMOVE_FEED","Remover RSS Feed");
define("RSS_PROBLEM","Se ocurrriÃ³ un error al abrir el RSS Feed");
define("REMOVE_FEED_CONFIRM","Esta seguro?");
define("PUBLISH_IN_HOME_PAGE","Publicar en la Home");
define("REMOVE_FROM_HOME_PAGE","Remover de la Home");
define("ALL_FEEDS","Todos los Feeds");

/*
	USER SHELF FOLDERS
*/

define("MONITORED_ACCESS","acceso monitorado");
define("MONITORED_CITATIONS","citaciones monitoradas");
define("MOVE_TO","mover para");
define("MY_FOLDERS","Mis Carpetas");
define("ADD_FOLDER","aÃ±adir carpeta");
define("INCOMING_FOLDER","Carpeta de Entrada");
define("SHOW_FOLDERLIST_BY","mirar lista por:");
define("DATE_SORT","Fecha");
define("MY_RANKING","Mi clasificaciÃ³n");
define("EDIT_FOLDER","Editar Carpeta");
define("DELETE_FOLDER","Apagar Carpeta");
define("FOLDER_NAME","Nombre de la Carpeta");
define("MOVE_FOLDER_TO","Mover Para");
define("BUTTON_MOVE","mover");
define("BUTTON_CANCEL","cancelar");
define("BUTTON_REMOVE","apagar");
define("BUTTON_EDIT","editar");
define("BUTTON_CREATE","crear");
define("MOVE_CONTENT_TO_OTHER_FOLDER","mover contenÃ­do para otra carpeta");
define("REMOVE_CONTENT","apagar contenÃ­do");
define("SHOW_BY_RATE"," por Ranking");
define("SHOW_BY_DATE"," por Fecha");

/*
 USER LINKS
*/

define("REMOVE_LINK","remover direcciÃ³n eletrÃ³nica");
define("EDIT_LINK","editar direcciÃ³n eletrÃ³nica");
define("ADD_LINK","aÃ±adir direcciÃ³n eletrÃ³nica");
define("LINK_TITLE","TÃ­tulo de la direcciÃ³n eletrÃ³nica");
define("LINK_URL","URL de la direcciÃ³n eletrÃ³nica");
define("LINK_DESCRIPTION","DescripciÃ³n de la direcciÃ³n eletrÃ³nica");
define("IN_HOME","aÃ±adir a primera pÃ¡gina");
define("DO_YOU_REALY_WANT_TO_REMOVE_IT","Desea realmente apagar la direcciÃ³n eletrÃ³nica?");
define("ENVIAR_ARTIGO_POR_EMAIL","Enviar artÃ­culo por e-mail");
define("SEND","enviar e-mail");
define("CLOSE","cerrar ventana");
define("ARTICLE_SUBMITED_WITH_SUCCESS","artÃ­culo enviado com Ã©xito");
define("SEARCHING_IN","procurando em");
define("SIMILARITY","relevÃ¡ncia");
/*
Collexis Instances Name
*/
define("ARR","SCI_OVERALL|SciELO Regional,SCI_SCIELOBR|SciELO Brasil,SCI_SCIELOCL|SciELO Chile,SCI_SCIELOCB|SciELO Cuba,SCI_SCIELOESP| SciELO EspaÃ±a,SCI_SCIELOVE|SciELO Venezuela,SCI_SCIELOSP|SciELO Salud PÃºblica,SCI_SCIELOSS|SciELO CiÃªncias Sociales");

define("FULL_TEXT","texto completo");
}
?>
<?xml version="1.0" encoding="ISO-8859-1"?><article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<front>
<journal-meta>
<journal-id>1414-3283</journal-id>
<journal-title><![CDATA[Interface - Comunicação, Saúde, Educação]]></journal-title>
<abbrev-journal-title><![CDATA[Interface (Botucatu)]]></abbrev-journal-title>
<issn>1414-3283</issn>
<publisher>
<publisher-name><![CDATA[UNESP]]></publisher-name>
</publisher>
</journal-meta>
<article-meta>
<article-id>S1414-32832008000100025</article-id>
<title-group>
<article-title xml:lang="en"><![CDATA[The baton of death orchestrating life]]></article-title>
<article-title xml:lang="pt"><![CDATA[A batuta da morte a orquestrar a vida]]></article-title>
<article-title xml:lang="es"><![CDATA[La batuta de la muerte orquestando la vida]]></article-title>
</title-group>
<contrib-group>
<contrib contrib-type="author">
<name>
<surname><![CDATA[Loureiro]]></surname>
<given-names><![CDATA[Altair Macedo Lahud]]></given-names>
</name>
<xref ref-type="aff" rid="A01"/>
</contrib>
<contrib contrib-type="author">
<name>
<surname><![CDATA[Ventura]]></surname>
<given-names><![CDATA[Carolina Silveira Muniz]]></given-names>
</name>
</contrib>
</contrib-group>
<aff id="A01">
<institution><![CDATA[,Universidade Católica de Brasília Postgraduate Program in Gerontology ]]></institution>
<addr-line><![CDATA[ ]]></addr-line>
</aff>
<pub-date pub-type="pub">
<day>00</day>
<month>00</month>
<year>2008</year>
</pub-date>
<pub-date pub-type="epub">
<day>00</day>
<month>00</month>
<year>2008</year>
</pub-date>
<volume>4</volume>
<numero>se</numero>
<fpage>0</fpage>
<lpage>0</lpage>
<copyright-statement/>
<copyright-year/>
<self-uri xlink:href="http://socialsciences.scielo.org/scielo.php?script=sci_arttext&amp;pid=S1414-32832008000100025&amp;lng=en&amp;nrm=iso&amp;tlng=en"></self-uri><self-uri xlink:href="http://socialsciences.scielo.org/scielo.php?script=sci_abstract&amp;pid=S1414-32832008000100025&amp;lng=en&amp;nrm=iso&amp;tlng=en"></self-uri><self-uri xlink:href="http://socialsciences.scielo.org/scielo.php?script=sci_pdf&amp;pid=S1414-32832008000100025&amp;lng=en&amp;nrm=iso&amp;tlng=en"></self-uri><abstract abstract-type="short" xml:lang="en"><p><![CDATA[Making references to other analyzers of death, I present notes on death organizing life. I hold the idea that death is needed to give meaning to life in this human search of completeness. I look into a special situation of regarding death: the reaction of the individuals when witnessing and feeling the death of their aged ones; the reaction of someone, being a relative or not, who assumes their care and follows their imminent end; of individuals witnessing powerlessly, the hour of the lonely departure of their elder. Lonely and exclusive death, proper of that aged ones of whom we used to took care of, and their natural end, as a human being.]]></p></abstract>
<abstract abstract-type="short" xml:lang="pt"><p><![CDATA[Com colocações de outros estudiosos da morte, teço e apresento apontamentos rápidos sobre a morte a organizar a vida. Esposo a idéia da necessidade da morte para que a vida tenha sentido nesta busca humana da completude. Endereço o olhar para uma situação especial de relação com a morte: a reação dos que ficam ao presenciar e sentir a morte de um dos seus idosos; daquele familiar, ou não, que assume o seu cuidado e acompanha o seu fim iminente; que presencia, humanamente impotente, a hora da solitária partida. Solitária morte, pois que exclusiva, própria daquele idoso do qual cuidava, do seu fim natural, por ser humano.]]></p></abstract>
<abstract abstract-type="short" xml:lang="es"><p><![CDATA[Con base en otros estudiosos de la muerte, expongo rápidos apuntamientos sobre la muerte como organizadora de la vida. Adopto la idea de la necesidad de la muerte para que la vida tenga sentido en esta busca humana de la complementariedad. Direcciono el estudio hacia una situación especial de relación con la muerte: la reacción de quienes se quedan al presenciar y sentir la muerte de uno de sus ancianos; la reacción de quien, familiar o no, asume su cuidado y acompaña su fin inminente; que presencia, humanamente impotente, la hora de la solitaria partida. Solitaria muerte, puesto que exclusiva propia de aquel anciano del cual cuidaba, de su fin natural como ser humano.]]></p></abstract>
<kwd-group>
<kwd lng="en"><![CDATA[Death]]></kwd>
<kwd lng="en"><![CDATA[Incompleteness]]></kwd>
<kwd lng="en"><![CDATA[Caretaker]]></kwd>
<kwd lng="en"><![CDATA[Elderly]]></kwd>
<kwd lng="pt"><![CDATA[Morte]]></kwd>
<kwd lng="pt"><![CDATA[Vida]]></kwd>
<kwd lng="pt"><![CDATA[Cuidadores]]></kwd>
<kwd lng="pt"><![CDATA[Idoso]]></kwd>
<kwd lng="es"><![CDATA[Muerte]]></kwd>
<kwd lng="es"><![CDATA[Vida]]></kwd>
<kwd lng="es"><![CDATA[Cuidadores]]></kwd>
<kwd lng="es"><![CDATA[Anciano]]></kwd>
</kwd-group>
</article-meta>
</front><body><![CDATA[ <p><font face="Verdana, Arial, Helvetica, sans-serif" size="4"><b>The baton of    death orchestrating life</b></font></p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>A batuta da    morte a orquestrar a vida</b></font></p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>La batuta de    la muerte orquestando la vida</b></font></p>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Altair Macedo    Lahud Loureiro<a href="#_edn1" name="_ednref1" title=""><sup>i</sup></a></b></font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Licentiate in Pedagogy.    Postgraduate Program in Gerontology, Universidade Católica de Brasília. &lt;<a href="mailto:altaira@uol.com.br">altaira@uol.com.br</a>&gt;</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Translated by Carolina    Silveira Muniz Ventura    ]]></body>
<body><![CDATA[<br>   Translation from <a href="http://www.scielo.br/scielo.php?script=sci_arttext&pid=S1414-32832008000400014&lng=en&nrm=iso&tlng=pt" target="_blank"><b>Interface    - Comunicação, Saúde, Educação</b>, Botucatu, v.12, n.27, p. 853-862, Out./Dez.    2008</a>.</font></p>     <p>&nbsp;</p>     <p>&nbsp;</p> <hr size="1" noshade>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>ABSTRACT</b></font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Making references    to other analyzers of death, I present notes on death organizing life. I hold    the idea that death is needed to give meaning to life in this human search of    completeness. I look into a special situation of regarding death: the reaction    of the individuals when witnessing and feeling the death of their aged ones;    the reaction of someone, being a relative or not, who assumes their care and    follows their imminent end; of individuals witnessing powerlessly, the hour    of the lonely departure of their elder. Lonely and exclusive death, proper of    that aged ones of whom we used to took care of, and  their natural end, as a    human being. </font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Key-words:</b>    Death. Incompleteness. Caretaker. Elderly.</font></p> <hr size="1" noshade>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>RESUMO</b></font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Com coloca&ccedil;&otilde;es    de outros estudiosos da morte, te&ccedil;o e apresento apontamentos r&aacute;pidos    sobre a morte a organizar a vida. Esposo a id&eacute;ia da necessidade da morte    para que a vida tenha sentido nesta busca humana da completude. Endere&ccedil;o    o olhar para uma situa&ccedil;&atilde;o especial de rela&ccedil;&atilde;o com    a morte: a rea&ccedil;&atilde;o dos que ficam ao presenciar e sentir a morte    de um dos seus idosos; daquele familiar, ou n&atilde;o, que assume o seu cuidado    e acompanha o seu fim iminente; que presencia, humanamente impotente, a hora    da solit&aacute;ria partida. Solit&aacute;ria morte, pois que exclusiva, pr&oacute;pria    daquele idoso do qual cuidava, do seu fim natural, por ser humano.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Palavras-chave</b>:    Morte. Vida. Cuidadores. Idoso.</font></p> <hr size="1" noshade>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>RESUMEN</b></font></p>     ]]></body>
<body><![CDATA[<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Con base en otros    estudiosos de la muerte, expongo r&aacute;pidos apuntamientos sobre la muerte    como organizadora de la vida. Adopto la idea de la necesidad de la muerte para    que la vida tenga sentido en esta busca humana de la complementariedad. Direcciono    el estudio hacia una situaci&oacute;n especial de relaci&oacute;n con la muerte:    la reacci&oacute;n de quienes se quedan al presenciar y sentir la muerte de    uno de sus ancianos; la reacci&oacute;n de quien, familiar o no, asume su cuidado    y acompa&ntilde;a su fin inminente; que presencia, humanamente impotente, la    hora de la solitaria partida. Solitaria muerte, puesto que exclusiva propia    de aquel anciano del cual cuidaba, de su fin natural como ser humano.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Palabras clave:    </b>Muerte. Vida. Cuidadores. Anciano.</font></p> <hr size="1" noshade>     <p>&nbsp;</p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>INTRODUCTION</b></font></p>     <p>&nbsp;</p>     <p align=right><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&quot;If    you want to endure life, prepare yourself for death&quot;     <br>   Freud</font></p>     <p align=right><font face="Verdana, Arial, Helvetica, sans-serif" size="2">"Thou    owest nature a death&quot;     <br>   Shakespeare</font></p>     ]]></body>
<body><![CDATA[<p align=right><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> "As    long as we exist, death is not here. And when it does come, we no longer exist"    <br>   Epicurus</font></p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the reflections    presented here, I do not intend to praise death or to pay homage to it; rather,    I want to extol life in this life that remains to the individuals who mourn    those who were already taken away by death. But it is possible to euphemize    fear, or to fight against the fear of death, at least as long as this cultural    horror regarding death lets us live, not waiting for death, but in spite of    it and in the daily contact with it, as it comes in varied forms, but is never,    or almost never, welcome. The memories of our beloved ones who have departed,    and how much we miss them, fulfill our soul, more completely, on the Day of    the Dead.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Therefore, I consider    this an opportune moment to talk about this natural phenomenon that is inexorable    to all of us. Talking about death is all that we can do, because it is impossible    to describe, in first person, what experienced death is, as it cannot be told    by its actor. </font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The intention is    to share fragments of the findings of my studies and research on the theme.    To support this discourse, I borrow reflections and positions of other scholars    of death, weaving with them the fabric of these brief notes on death as the    organizer of life. I am concerned about the elderly individual in face of death,    not because I associate old age with death, but because of coherence with my    academic research and actions within Gerontology &#150; a science that is devoted    to the study and understanding of the old age phenomenon, the aging process    and the situations and realities of the old human being in the world -, when    I attempt to identify ideas of life and death in the mental imagery of the elderly,    and also in that of their caregivers. That is why I study and research the mental    imagery of groups of elderly individuals and of those who surround them; at    the present moment, of those who assist them in the final periods of life, always    searching for a positive quality of life in old age. I investigate how the elderly    and the people surrounding them carry the world; their world views regarding    the idea of their own death and the reality of death witnessed or known in relation    to other people; how they represent in images and symbols this relational set    of images that emerge in: their dreams, daydreams, posture concerning life,    speech, life histories, and even drawings, writings or tests<a href="#_ftn1" name="_ftnref1" title=""><sup>1</sup></a>.</font></p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>Death does not    choose age</b></font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">We will all die,    we know it well. It is a democratic situation of human nature, where social    class, acquired importance, beauty and age do not matter. In this rational world,    which crushes emotions and denies alterity, old age has been confounded with    disease and related to death, when it is known that death does not choose age    whenever it decides to satisfy &#150; metaphorically speaking &#150; its insatiable greediness    with one more human prey. It does not stop and, with voracious appetite, swallows    even those who thought they were immortal. This is the mark of the horror of    death that is imprinted on mental imagery by Western culture. In the same way,    health problems indiscriminately affect the elderly, youths and children.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Death, a universal    event for the living beings, does not refer only to the elderly. At any age,    death, which is unspeakable, ill-famed, horrendous &#150; according to Western qualifications    &#150; can present itself without asking for permission, and without bothering whether    its victim has lived a long life or not.  </font></p>     ]]></body>
<body><![CDATA[<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Messy (1993, p.3)    tells us that, in the exercise of gerontological psychology, he used to wonder:    "how many years did these old people still have?"<a href="#_ftn2" name="_ftnref2" title=""><sup>2</sup></a>    And also, "who would be the next victim? The human being is so fragile that    it was the youngest one &#91;…&#93; who died first, victim of a stupid accident".</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Man knows he is    mortal, but thinks he is immortal. It is the other who dies, not me! An unreasonable    posture, because in this age of deep uncertainties, our only certainty is death.    "Death is a universal event par excellence: the only thing of which we are truly    certain, although we ignore the day and time, why and how we will die &#91;…&#93;"(Thomas,    1980, p.7). <i>&quot;Sei que vou morrer não sei a hora</i> &#91;&#133;&#93; &quot; (I know    I'll die but don't know at what time), the song says, but blessed is this lack    of knowledge. Knowing that he is mortal already upsets man, what if we knew    the day and time of our death? Transcribing Freud, Mannoni (1995, p.8) states    that "in the unconscious there is no representation of death, that is, &#91;…&#93; there    where desire lives, the subject believes he is immortal &#91;…&#93; the condition of    being mortal leads the subject to search for his immortality in desire". Therefore,    "man does not believe in his own death" (p. 7) and insists in understanding,    believing that only the old die.</font></p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>Mental imagery    and the living mortals</b></font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The human being    fears his finitude, his death, and moves it away from the conscious field, euphemizing    it in the attempt to postpone it or not even thinking about it, but there are    those who fight against death in the illusion of defeating it. The reactions    concerning death vary, depending on the mental imagery of each person. These    are attitudes that are structured in a different way and represented with different    images, which can be noted in the people's forms of carrying life and of positioning    themselves in the world, in society and in relation to themselves.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">That is why the    representational images of death can agglutinate in different "regimes &#150; diurnal    or nocturnal" (Durand, 1989, p.44), presenting themselves in a positive or negative    way. Ideas of life or death form constellations of different images that emerge    in the symbolic representations of the caregivers and of the elderly themselves.    They can be seen or read mythically, identifying the anthropological structure    of the mental imagery of individuals and/or groups. According to Durand (1989),    the mental imagery is the weapon <b>given to man to defeat the fear of death    and the passing of time.</b> This mental imagery can present itself, archetypically,    in a heroic form &#150; with the presence of a fight, trying to defeat the monster    of fear, danger; it can emerge in a mystical way &#150; euphemizing danger, not fighting,    disregarding the monster of death, of danger; it can let us see it mythically    in a disseminating way, sometimes represented in a heroic form, sometimes in    a mystical form, simultaneously or diachronically; or it can come to light in    a "defective" manner", what Yves Durand (1988, p. 129) calls "the universe of    non-structuring". Thus, I strived to learn what time the author was referring    to and, after long-lasting, and always complemented, studies, I wrote &quot;A    velhice, o tempo e a morte &quot; (Loureiro, 1998), in which I focus on understanding    time and identify that Durand was referring to our Judaic-Christian time. In    a field research, I surveyed, in Brasília, by means of the Archetype Test of    Nine Elements &#150; the AT-9 test created by Yves Durand (1988) &#150;, the mental imagery,    the images of life and death of a group of elderly individuals (Lahud, 1993);    by analyzing, mythically, the emerged images, represented in the test protocols,    I tried to understand the death phenomenon, the relation of the elderly subjects    to death, in order to better understand life and the human being. I considered    the importance of penetrating this phenomenon viewed as prohibited, even by    means of speaking. Thus, I identified the mythical universe of the group of    retired teachers, aged 60 or older, living in Brasília. </font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The death phenomenon    became the object of my studies. I try to enter into its nature, recognize its    characteristics and analyze its rituals in times and spaces, and I also try    to understand the posture of the thanatocrats, the owners of death in hospitals,    and amplify the in-depth reading about the theme, visiting thanatologists in    their writings and research results. Little by little, I began to understand    that fearing the unknown is part of human nature. However, hiding the head like    an ostrich hinders the opportunity of advancing knowledge about the phenomenon.    The fear and uneasiness that we feel when we try to touch the interdictions    are natural; and death continues to be an interdiction, a prohibition: "It is    no longer the children who are born inside cabbages, but the deceased who disappear    among the flowers" (Thomas, 1980, p.7).</font></p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>Multiple and    diverse dimensions of death</b></font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">It is not easy    to find the pace, time and the right rhythm to transit in the cadence of the    indescribable, of what cannot be narrated by the protagonist of the fact: talking    about death in first person. Talking about death is always something strange    to us, because we only know it in other people, outside ourselves. To Morin    (1970, p.25), "death is not an idea, but an ‘image', as Bachelard would say,    a metaphor of life, a myth, if we want to put it this way", but it is there,    it is around, far away or close to us. Death is part of life, it orchestrates    our existence in a harmonic way or without harmony, putting us in the compass    or in the lack of compass of life. </font></p>     ]]></body>
<body><![CDATA[<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To me, the way    Paula Carvalho (1999) naturally compares life to the sun, old age to twilight,    to nightfall, to sunset, is beautiful and interesting. The latter, in fact,    imitates or is imitated by life in its uroboric process of, constantly, rising,    ascending, being high in the sky and descending in the setting of the visible    horizon, rising again in other places, with other colors and heat: "ascensiondeclinerebirth    on the other side" (Paula Carvalho, 1999, p.38). It is the movement, the incompleteness    that is present in nature, also understood as human nature, which is always    under transformation… but continues. Koury (2001, p.41) quotes Fernando Pessoa,    who says that "everything that lives, lives because it changes, changes because    it passes, and because it passes&#133; it DIES. Perenniality is a desire and an    eternal illusion".</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Trying to understand    the death phenomenon requires a multidisciplinary posture which, in interdimensionality,    respects its multiple and diverse reality &#150; biopsychical-anthroposocial &#150; without    forgetting the typical individuality present in each case: uniqueness within    multiplicity, as in all the cases that involve the human person.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The matrix of time    and space is important in the consideration of death, as the attitudes and rituals    concerning it have been alternating across times and cultures, according to    the interactions that men maintain with each other and the relation of belongingness    to or separation from nature; their excessive dedication to properties, unbreakable    beliefs, crystallized values, unquestionable dogmas, and their religion. Some    traditionally see it as an enemy; they see death as a punishment, the purgation    for the original sin. Maybe because Western man understands death as an enemy,    he faces it fighting with all his might, which sometimes makes what should be    a calm ritual of passage become a sanctified battle. But "the Christian believes    in the resurrection of flesh, in the resurrection of the body" (Oliveira, 1999,    p.50) and sees in Holy Communion "&#91;…&#93; the prediction of an end, the annunciation    and proclamation of a new plenitude… already under way". On the other hand,    in some countries, there is the accepted reality of euthanasia, when doctors    give themselves the right to shorten life, on behalf of a reduction in suffering,    which is questionable, because there are many factors that intervene in this    delicate and complex process.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Not only does space/culture    alter the idea of death, but time also changes mentalities in relation to death.    In former times, as Áries (1977) tells us, death was a great ceremony, almost    public, presided by the deceased, who was prepared and knew his death was near;    the dying person presided and commanded his death. Later on, man, on the verge    of death, is deprived of his rights and begins to be protected like a child,    as if he had already lost reason and responsibility. The command of death ceases    to be held by the dying person and is assumed by the family; the ill individual    is deprived of preparing his death; what should be solemn is concealed; the    patient dies in ignorance and sometimes he does not even feel that he is dying.    Today, death is a dramatic comedy, where the individual plays the role of the    person who does not know he is going to die. The dying human is disregarded    in his final wishes, his presence is stigmatized in a Bachelardian "complex    of culture" (Roy, 1977, p.97) that is evident, torturous. People die secretly,    in clandestinity. I recall here <i>The death of Ivan Ilitch</i>, a famous novel    by Tolstoy (1963). In the last century, the hospitals begin to play an important    role in relation to death, which ceases to be a natural event in the family's    daily life. The responsibility for death, which passes from the dying person    to the family, is now delivered to or taken by the hospitals. But nowadays there    are terminal patients receiving, at their own homes, palliative treatments that    make the final phase of life be less traumatic than in hospitals' Intensive    Care Units. Today, it is possible to find health professionals reflecting and    acting in a different way regarding the dying person. Burlá (2006, p.1079) refers    to new "forms of dying" and states that "the risk of clinical complications"    in terminal patients:</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&#91;&#133;&#93; and the consequent    decrease in quality of life oblige the involved professionals to have a more    individualized action and a humanistic posture in view of the situation that    is presented, and point that the patient needs to be continuously monitored.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The author sustains    that it is necessary to "recognize that the process of dying is as important    as making a diagnosis". Gomes (2004, p.82), referring to the doctor's role regarding    the patient who is in a terminal process of life, mentions the role of "consoling,    even when medicine cannot offer cure anymore". This so-called palliative care,    which is in a process of expansion, reflects a good posture in this occupation    of accompanying and giving voice until the end to the person who is on the verge    of meeting death.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Death is a natural    phenomenon that derives from the human being's biological nature, but dying    comes both from culture and from nature. To Ziegler (1977, p.130), "death is    a masquerade that approaches us with the mask constructed by society &#91;&#133;&#93;",    because:</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&#91;&#133;&#93; the human    being, in the cultural diversity of different peoples, submerged in his context,    impregnated with his characteristic surroundings and conscious of the deep matrixes    inside himself &#150; the archetypes -, accepts, or not, the facts: he fights, or    does not react, against things that are unfamiliar to him or to the other peoples.    (Loureiro, 1998, p.56)</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Jankélévitch (1977)    writes that talking about death may be a <b>philosophical</b> problem, but reminds    us that death is also a <b>biological</b> problem "like birth, puberty and aging";    that "mortality is a <b>social</b> phenomenon just like natality, marriage or    criminality" (p.5-6). Morin (1970, p.10) says that "&#91;&#133;&#93; society functions    not only in spite of death and against death &#91;&#133;&#93;, but it also only exists    as an organization through death, with death and in death". Jankelevitch (1977,    p.5) goes on arguing that, "to the doctor, the lethal phenomenon is a determinable    and predictable phenomenon &#91;…&#93; due to the average duration of life and because    of the <b>general conditions of the environment</b>". The scholar of death also    states that, from the juridical and legal point of view, "death is simply a    natural phenomenon and a normal empirical phenomenon, to which the impersonality    of the <b>statistics</b> and means attributes the whole character of tragedy".    Morin (1970, p.16-7) also notes that "not only does biology take charge of death,    but anthropology also analyzes it &#91;…&#93;. Death is the most human, most cultural    characteristic of the <i>anthropos</i> &#91;…&#93;".</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">But each age presents    one posture in face of death, and in each place, mentality is formed and expresses    itself according to society and culture: from a resigned acceptance of the mortal    destiny to the desperation of finitude &#150; and today, in the West, we have almost    achieved silence: the prohibited. It is obvious that there is a close relationship    between man's individuality and his horror of death, a relationship that is    also verified, in space, between the degree of individuality attained by man    and the type of society in which he lives; in the matrix of time and space,    history and culture. "There is a society that respects man and accepts death:    the African; and another one that is deadly, thanatocratic, where death upsets    and terrifies: the Western one" (Thomas, 1980, p.527). In Western societies,    man's individuality has been crushed, and he cannot perceive death in its depth.    Thus, he is conducted by the collective to a convenient view (to society), which    represses his feelings and degrades him, which, according to Durand (1989, p.29),    represents "the pressure of the cosmic and social environment" in the "anthropological    trajectory". The anthropological trajectory is understood as the circular and    symbiotic path between man's desiring interior and the external pressures imposed    by the cosmos and society. The institutionalized, abandoned elderly individual,    as any man with a destroyed identity and low self-esteem, may desire his own    death.</font></p>     ]]></body>
<body><![CDATA[<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Society manipulates    the image of death in the way it wants it to be presented, according to the    strength of culture that man experiments, being reduced by it to his mere functionality.    Today, "man is incapable of integrating his death into a globality that is different    from mercantile functionality" (Ziegler, 1977, p.307).</font></p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>Death orchestrating    life</b></font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">From the human    being's relation to the idea and inevitable reality of death derives his posture    concerning life. "It is in his attitudes and beliefs regarding death that man    is most clearly distinguished from the other living beings, and expresses what    is more fundamental about life." (Morin, 1970, p.25). This is the posture that    is not equal among men &#150; different attitudes among peoples that reflect the    culturally determined ways of thinking of each people. By unveiling man's mental    imagery, it is possible to understand better: his attitudes, rituals, different    positions, conviviality, his escapes, fears or the acceptance of the situations    of life and death.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Gomes (2004, p.71-2)    states that "death is not an enemy to be defeated, but an integral part of our    lives that gives meaning to human existence". The author also says that "death    establishes a limit in our life time and impels us to do something productive    in this space of time, while we have it &#91;…&#93;, but our society is afraid of death    and fights against it all the time". Moreover, according to the author, the    human being denies death, but this denial "impoverishes our lives".</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Thomas (1980, p.12-4)    notes that "by knowing death better, man will not teach himself to run away    from it or hide it; perhaps he will appreciate life better, he will respect    it more". Therefore, transcribing Freud, Mannoni (1995, p.10) writes, "If you    want to endure life, prepare yourself for death".</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The anthropology    of the mental imagery considers that the latter results from man's posture in    face of death, in view of the fear of death, and of the discovery that mental    imagery is the way the subject or groups carry life and the world on their backs.    This, to the author of mental imagery's anthropological structures &#150; Durand    -, is more important than merely identifying, in groups and individuals, the    anthropological structure of their mental imagery underlying the mythical universes    that are found. These myths that attend and form such universes are responsible    for the way of being in the world of each individual or each group.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">While some individuals    and groups are terrified at the presence of death, others try to unveil or euphemize    it in order to overcome it, and others accept it passively. The varied attitudes    &#150; horror, acceptance or indifference &#150; in relation to death derive not only    from the individuality of each man or woman, but also from the view that each    society has of death. Mentality alters or adjusts itself depending on factors    that are, at first, external to man, but which, with time, solidify on him through    the surrounding culture: through ideological, philosophical and economic situations.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">According to Morin    (1970, p.16-7):</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&#91;…&#93; a biocultural    dialectic constitutes the human being and, in the course of this dialectic,    the energy of cultural characteristics &#91;…&#93; exist, conditioning man's biotype    &#91;…&#93;, and the anthropological principles act through space and time, and the    archaic structures, the archetypes, remain under the current structures.</font></p>     ]]></body>
<body><![CDATA[<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The studied authors    directed my eyes to the mentality differences regarding the phenomenon; therefore,    I repeat that not only is biological nature present in death, but culture marks    and determines it. Freud (1984, p.219) revisits Shakespeare's expression, already    recorded in an epigraph in this text: "… thou owest nature a death".</font></p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>Caregivers of    elderly individuals, affection and loss</b></font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Healthy elderly    people who are cared for by the family seem to have a more distant idea of fear    of death. They seem to be distressed by the possibility or imminence of losing    this unselfish care provided by their beloved ones. "What makes old age be synonymous    with suffering is abandonment rather than disease; loneliness rather than dependence"    (Minayo, 2002, p.14). In this society that is modified with time, the family    no longer is what it used to be in past times, the family members are busy surviving    and may not be providing care personally, nor the company that is so valued    by the elderly relative. Hence, there is space for the role of the professional    caregiver: a person who is not a relative but has to embody this role, adding,    to her knowledge, training, readings and much love. When the elderly become    fragile due to disease or dependence, they need, like all of us at any age,    in identical circumstances, special care, the dependent interaction with the    person who takes care of them &#150; the caregivers who, in old age, provide assistance,    like the guardian angels, relieve pain, give understanding and tenderness, or    else the mere presence that eliminates loneliness, or become interlocutors,    professional or not, who know how to listen with the ears of the soul. </font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The person who    has this occupation and dedicates herself to it unselfishly, with her soul's    decision, with willingness and solidarity, besides her survival, is worthy of    admiration and respect. It is not only a kind of priesthood, but a professional    activity that deserves a fair reward for its important specialized "care" acquired    through refined education and performed with loving dedication. The action of    taking care of elderly people &#150; terminal patients or not &#150; cannot happen through    loving improvisation only, not even when the ones who provide care devote tenderness,    emotion and affection to the elderly. This action must happen with the conscious    and consistent preparation regarding the attitudes, abilities and skills needed    in the chosen profession/work/task.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">But it is necessary    to think about the feelings awaken in this human being who, unselfishly, professionally    and consciously, takes care of her elderly and also of strangers who become    her elderly too, aged people who receive daily care provided by them, the caregivers.    Contradictory feelings may complete the picture in the evidence of loss, of    the death of their elderly, like: pain, lack, relief, guilt, loneliness, fear,    impotence, conflict, anguish and others. How do these caregivers react internally?    How do they represent, in their mental imagery, the fact of the end of a life    that was so close to them? How do they react in view of the death of these elderly    individuals who were already theirs?</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">This is an academic    curiosity which, when satisfied, will enrich the knowledge about the thanatic    situation: to survey the image and symbolic representations concerning the finitude    of the other; in this case, to discover the caregiver's mental imagery in face    of the death of one of her elderly "patients"<a href="#_ftn3" name="_ftnref3" title=""><sup>3</sup></a>.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Loss is always    a death, an end; it is an overwhelming feeling in any circumstance; and it grows    as a negative feeling when it does not allow the recovery, in the same measure,    of what was lost. When we witness the suffering and agony of the other, fear    invades us, because the death of the other brings to us our finite human condition.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">But if we cannot    do anything against the inexorable, it is necessary that, with informed knowledge,    we deal with it inside ourselves. Worrying about our own death is something    common and human; we have our individual conceptions, although contaminated    by culture, of our death, of our finite and limited condition, of incompleteness;    but our focus here is on the idea of loss caused by the death of one of our    elderly, that aged person for whom we cared during a long or a short period    of time.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">It is natural that    affection happens after some time of daily interaction, an unequal interaction    between a healthy person, the caregiver, and the dying person, or terminal patient,    who sometimes is not patient at all &#150; in fact, he can be very impatient. But    let us try to be in the caregiver's shoes, in the recommended and human empathy    of the task of providing care. The other is a terminal patient. Perhaps for    this reason we acquire the bond and, when we lose the patient, this loss affects    us. Kübler-Ross (1987) lists stages through which the patient goes, when he    discovers he is dying or will die: "denial, anger, bargain, depression and resignation";    the caregivers of people in terminal phase go through these same stages. Even    knowing that the person is a terminal patient, the expectation concerning the    arrival of this end, the end of life, affects the emotions, and reason is weakened    in the deluded hope that her patient, whom she already loves, who is already    part of her daily life and of her affections, will not die. Crazy illusion,    because everything that is born, grows and dies &#150; and man, even when he is much    loved, is included in this truth. Finally, resignation in face of nature, which    does not leave anyone behind. Mourning happens and it may come in advance when    the caregiver distressfully waits for something she knows beforehand will happen    (Py, 1999). </font></p>     ]]></body>
<body><![CDATA[<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Death is always    far from us in our hopes; those who die are the others, those human beings that    do not belong to us, that are not part of us, as if this were possible. We push    death strongly &#150; or carefully so as not to wake it up &#150; away from our eyes and    our heart. The suffering brought by loss is perhaps larger than the fear of    death. We commonly hear: I'm not afraid of dying, but I'm afraid of suffering    or of becoming dependent. And the loss of the other makes me suffer! Losing    my mother, my father, my brother, my son, my friend: I can't even think about    it!</font></p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="3"><b>To conclude</b></font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">It is necessary    to process well the idea of non-guilt, the empty space that remains in the track    of the death of our beloved ones, relatives or not. We must resort to the equilibrium    that is always fought for, cared for, preserved and amplified during our caregiver    education and in the period of the action, of the act and of the dynamic process    of providing care. We must be aware of the inevitability of that death, and,    ultimately, of the death of all of us; we have to acquire the clairvoyance that    enables us to listen attentively to the true suffering of our "patient", paying    attention to the possible embarrassed disguises of suffering. We live in a culture    in which being strong and perfect, with lots of energy, is the demanded model,    and within this context, the human being feels the fragility of his condition    of old person who is ill. It is necessary to learn how to listen to the weak    voice of the elderly person lying in bed, facilitating, in every way, his complaints,    listening to him in the way he deserves. The alliances established with the    patient's relatives and other professionals will help in the delicate intervention,    in the action of taking care of the terminal elderly person. The waiting time    of the family and of the professionals must be endured without desperation,    revolt, and every negative feeling &#150; although natural and human - that may emerge    given the dateless proximity of the inexorable arrival of death. Waiting for    the inexorable is strange, complex and distressful, as we do not want it to    happen. We want to keep safely in our hearts the eternal life of those we love.    How can we wake up every day knowing that death is around and that, at any time,    it can control the situation and take away, between its sharp teeth, that being    that we learnt to want in life? In that life that is already frail and obscured    by disease, suffering and pain, in the phase in which they need our care, solidarity,    tenderness and more attention than ever.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The caregiver's    task is dynamic, as she deals with neotenic human beings, that is, with creatures    that change and that, each day, may be in a different form and mood. "The living    beings, in fact, can assist the one who is going to die, but it is in loneliness    that he takes the last step, frequently in a subtle way, in front of those who    surround him. It is like a "refined thief" that death behaves in these cases"    (Mannoni, 1995, p.16). Listening to them is fundamental, as sometimes their    voice has already been silenced at home or on the street, perhaps due to the    fragility of its potency that cannot compete anymore, that cannot be heard in    a competitive society, with stronger voices, or with a competent discourse.    The important thing is to let them talk, speak the last word, allow them to    have life until the end; not to hide anything from them and see in them, even    when they are dying, the dignity of the human being, "that is, as speaking beings"    (Fuks, 1995, p.10); viewing them, even at this moment, as citizens. What we    will hear may seem confused, but it is the last effort to be connected with    the world, with the life that exists in us and that, to the dying person, is    almost finished. As Octave Mannoni used to repeat, "the devil will not have    me", while the town's priest, reported by Georges Bernanos and remembered by    Oliveira (1999, p.52), used to say, "what does it matter? Everything is grace!".    The loss then happens and, as zealous caregivers who were there until the end,    providing assistance during the last sigh, we suffer the unpleasant contact    with death, but, "after the initial horror of some serious loss, in the darkness    of impotence and lack of resignation, some gaps begin to open through which    the old light falls on the present moment" (Luft, 2004, p.105). And life continues    until the ‘next victim' is chosen by death, the ‘insatiable glutton'.</font></p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Gonzaguinha used    to sing, in a song that is still heard nowadays, <i>&quot;ninguém quer a morte,    só saúde e sorte&quot;</i> (no one wants death, only health and luck).</font></p>     <p>&nbsp;</p>     <p> <b><span style='font-family:Verdana'>REFERENCES</span></b></p>     <!-- ref --><p> ÁRIES, P. Essai sur l'histoire de la mort en ocident: du Moyen Age à nous    jours. Paris: Le Seuil, 1977.    </p>     ]]></body>
<body><![CDATA[<!-- ref --><p> BURLÁ, C. Paliação: cuidados ao fim da vida. In: FREITAS, E. et al. (Orgs.).    Tratado de geriatria e gerontologia. 2.ed. Rio de Janeiro: Guanabara Koogan,    2006. p. 1079-89.    </p>     <!-- ref --><p> DURAND, G. As estruturas antropológicas do imaginário: introdução à arquetipologia    geral. Trad. Helder Godinho. Lisboa: Editorial Presença, 1989.    </p>     <!-- ref --><p> ______. L'exploration de l'imaginaire: introduction à la modélisation des    univers mythiques. Paris: L'Espace Bleu, 1988.    </p>     <!-- ref --><p> FREITAS, E. et al. Tratado de geriatria e gerontologia. 2.ed. Rio de Janeiro:    Guanabara Koogan, 2006.    </p>     <!-- ref --><p> FREUD, S. La interpretación de los sueños: obras completas. Buenos Aires:    Amorrortu, 1984. v. 4.    </p>     ]]></body>
<body><![CDATA[<!-- ref --><p> FUKS, B.B. Vida e morte numa profissão impossível. In: MANNONI, M. (Org.).    O nomeável e o inominável: a última palavra da vida. Rio de Janeiro: Zahar,    1995. p. 7-10.    </p>     <!-- ref --><p> GOMES, L. O amor e a finitude da vida. In: LOUREIRO, A. (Org.). Terceira idade:    ideologia, cultura, amor e morte. Brasília: EdUnB, 2004. p. 31-92.    </p>     <!-- ref --><p> JANKÉLÉVITCH, V. La mort. Paris: Flammarion, 1977.    </p>     <!-- ref --><p> KOURY, M.G.P. (Org.). Imagens e memória: ensaio em antropologia visual. Rio    de Janeiro: Garamond, 2001.    </p>     <!-- ref --><p> KUBLER-ROSS, E. Sobre a morte e o morrer. Trad. Paulo Menezes. São Paulo:    Martins Fontes, 1987.    </p>     ]]></body>
<body><![CDATA[<!-- ref --><p> LAHUD, A.M. Imagens da vida e da morte: vetores culturanalíticos de um grupo    de idosos e pistas para a criação de um espaço cultural. 1993. Tese (Doutorado)    - Faculdade de Educação, Universidade de São Paulo, São Paulo. 1993.    </p>     <!-- ref --><p> LOUREIRO, A.M. O velho e o aprendiz: o imaginário em experiências com o AT-9.    São Paulo: Zouk, 2004.    </p>     <!-- ref --><p> ______. A velhice, o tempo e a morte: subsídios para a continuidade dos estudos.    Brasília: Editora da Universidade de Brasília, 1998.    </p>     <!-- ref --><p> LUFT, L. Perdas e ganhos. 23.ed. Rio de Janeiro: Record, 2004.    </p>     <!-- ref --><p> MANNONI, M. O nomeável e o inominável: a última palavra da vida. Rio de Janeiro:    Zahar, 1995.    </p>     ]]></body>
<body><![CDATA[<!-- ref --><p> MESSY, J. A pessoa idosa não existe: uma abordagem psicanalítica da velhice.    Trad. José Werneck. São Paulo: Aleph, 1993.    </p>     <!-- ref --><p> MINAYO, M.C.; COIMBRA JR., C. (Orgs.). Antropologia, saúde e envelhecimento.    Rio de Janeiro: Fiocruz, 2002.    </p>     <!-- ref --><p> MORIN, E. L'homme et la mort. Paris: Seuil, 1970.    </p>     <!-- ref --><p> OLIVEIRA, F.P. Finitude na experiência religiosa. In: PY, L. (Org.). Finitude:    uma proposta para reflexão e prática em gerontologia. Rio de Janeiro: NAU, 1999.    p. 45-54.    </p>     <!-- ref --><p> PAULA CARVALHO, J.C. Velhice, alteridade e preconceito: dimensões do imaginário    grupal com idosos. Interface - Comunic., Saúde, Educ., v. 3, n. 5, p. 29-40,    1999.    </p>     ]]></body>
<body><![CDATA[<!-- ref --><p> PY, L. (Org.). Finitude: uma proposta para reflexão e prática em gerontologia.    Rio de Janeiro: NAU, 1999.    </p>     <!-- ref --><p> ROY, J-P. Bachelard ou le concept contre l'image. Montreal: Presses de l'Université    de Montreal, 1977.    </p>     <!-- ref --><p> TERRA, A.P. O imaginário de um grupo de cuidadores de idosos asilados. 2007.    Dissertação (Mestrado) - Universidade Católica de Brasíli, Brasília. 2007.    </p>     <!-- ref --><p> THOMAS, L.V. Anthropologie de la mort. Paris: Payot, 1980.    </p>     <!-- ref --><p> TOLSTOI, L. A morte de Ivan Illitch e senhores e servos. Trad. Marques Rebelo.    Rio de Janeiro: Tecnoprint, 1963. (Coleção Universidade de bolso)<!-- ref --><p> ZIEGLER, J. Os vivos e a morte: uma sociologia da morte no ocidente e na diáspora    Africana no Brasil e seus mecanismos culturais. Trad. Áurea Weissemberg. Rio    de Janeiro: Zahar, 1977.    </p>      <p>&nbsp;</p>     <p>&nbsp;</p>     <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><a href="#_ftnref1" name="_ftn1" title=""><sup>1</sup></a>    It is the Archetype Test of  Nine Elements &#150; AT 9 -, created by Yves Durand,    presented in <i>O velho e o aprendiz </i>(Loureiro, 2004).    <br>   <a href="#_ftnref2" name="_ftn2" title=""><sup>2</sup></a> All the quotations present    in the text, except for the epigraphs, were translated from Portuguese into    English.    <br>   <a href="#_ftnref3" name="_ftn3" title=""><sup>3</sup></a> At Universidade Católica    de Brasília, I supervised the Master's thesis in gerontology authored by the    physiotherapist Ana Paula Terra (2007), who investigated the mental imagery,    the ideas of life and death of a group of caregivers of elderly individuals,    in Ipatinga &#150; State of Minas Gerais.    <br>   <a href="#_ednref1" name="_edn1" title=""><sup>i</sup></a> Address: SHIN QI    08, conjunto 08, casa 13 Brasília, DF. 71.520-280. &nbsp;</font></p>      ]]></body><back>
<ref-list>
<ref id="B1">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[ÁRIES]]></surname>
<given-names><![CDATA[P.]]></given-names>
</name>
</person-group>
<source><![CDATA[Essai sur l'histoire de la mort en ocident: du Moyen Age à nous jours]]></source>
<year>1977</year>
<publisher-loc><![CDATA[Paris ]]></publisher-loc>
<publisher-name><![CDATA[Le Seuil]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B2">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[BURLÁ]]></surname>
<given-names><![CDATA[C.]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[Paliação: cuidados ao fim da vida]]></article-title>
<person-group person-group-type="editor">
<name>
<surname><![CDATA[FREITAS]]></surname>
<given-names><![CDATA[E.]]></given-names>
</name>
</person-group>
<source><![CDATA[Tratado de geriatria e gerontologia]]></source>
<year>2006</year>
<edition>2</edition>
<page-range>1079-89</page-range><publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Guanabara Koogan]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B3">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[DURAND]]></surname>
<given-names><![CDATA[G.]]></given-names>
</name>
<name>
<surname><![CDATA[Godinho]]></surname>
<given-names><![CDATA[Helder]]></given-names>
</name>
</person-group>
<source><![CDATA[As estruturas antropológicas do imaginário: introdução à arquetipologia geral]]></source>
<year>1989</year>
<publisher-loc><![CDATA[Lisboa ]]></publisher-loc>
<publisher-name><![CDATA[Editorial Presença]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B4">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[DURAND]]></surname>
<given-names><![CDATA[G.]]></given-names>
</name>
</person-group>
<person-group person-group-type="editor">
<name>
</name>
</person-group>
<source><![CDATA[L'exploration de l'imaginaire: introduction à la modélisation des univers mythiques]]></source>
<year>1988</year>
<publisher-loc><![CDATA[Paris ]]></publisher-loc>
<publisher-name><![CDATA[L'Espace Bleu]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B5">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[FREITAS]]></surname>
<given-names><![CDATA[E.]]></given-names>
</name>
</person-group>
<source><![CDATA[Tratado de geriatria e gerontologia]]></source>
<year>2006</year>
<edition>2</edition>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Guanabara Koogan]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B6">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[FREUD]]></surname>
<given-names><![CDATA[S.]]></given-names>
</name>
</person-group>
<source><![CDATA[La interpretación de los sueños: obras completas]]></source>
<year>1984</year>
<volume>4</volume>
<publisher-loc><![CDATA[Buenos Aires ]]></publisher-loc>
<publisher-name><![CDATA[Amorrortu]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B7">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[FUKS]]></surname>
<given-names><![CDATA[B.B.]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[Vida e morte numa profissão impossível]]></article-title>
<person-group person-group-type="editor">
<name>
<surname><![CDATA[MANNONI]]></surname>
<given-names><![CDATA[M.]]></given-names>
</name>
</person-group>
<source><![CDATA[O nomeável e o inominável: a última palavra da vida]]></source>
<year>1995</year>
<page-range>7-10</page-range><publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Zahar]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B8">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[GOMES]]></surname>
<given-names><![CDATA[L.]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[O amor e a finitude da vida]]></article-title>
<person-group person-group-type="editor">
<name>
<surname><![CDATA[LOUREIRO]]></surname>
<given-names><![CDATA[A.]]></given-names>
</name>
</person-group>
<source><![CDATA[Terceira idade: ideologia, cultura, amor e morte]]></source>
<year>2004</year>
<page-range>31-92</page-range><publisher-loc><![CDATA[Brasília ]]></publisher-loc>
<publisher-name><![CDATA[EdUnB]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B9">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[JANKÉLÉVITCH]]></surname>
<given-names><![CDATA[V.]]></given-names>
</name>
</person-group>
<source><![CDATA[La mort]]></source>
<year>1977</year>
<publisher-loc><![CDATA[Paris ]]></publisher-loc>
<publisher-name><![CDATA[Flammarion]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B10">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[KOURY]]></surname>
<given-names><![CDATA[M.G.P.]]></given-names>
</name>
</person-group>
<source><![CDATA[Imagens e memória: ensaio em antropologia visual]]></source>
<year>2001</year>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Garamond]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B11">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[KUBLER-ROSS]]></surname>
<given-names><![CDATA[E.]]></given-names>
</name>
<name>
<surname><![CDATA[Menezes]]></surname>
<given-names><![CDATA[Paulo]]></given-names>
</name>
</person-group>
<source><![CDATA[Sobre a morte e o morrer]]></source>
<year>1987</year>
<publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Martins Fontes]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B12">
<nlm-citation citation-type="">
<person-group person-group-type="author">
<name>
<surname><![CDATA[LAHUD]]></surname>
<given-names><![CDATA[A.M.]]></given-names>
</name>
</person-group>
<source><![CDATA[Imagens da vida e da morte: vetores culturanalíticos de um grupo de idosos e pistas para a criação de um espaço cultural]]></source>
<year>1993</year>
</nlm-citation>
</ref>
<ref id="B13">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[LOUREIRO]]></surname>
<given-names><![CDATA[A.M.]]></given-names>
</name>
</person-group>
<source><![CDATA[O velho e o aprendiz: o imaginário em experiências com o AT-9]]></source>
<year>2004</year>
<publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Zouk]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B14">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[LOUREIRO]]></surname>
<given-names><![CDATA[A.M.]]></given-names>
</name>
</person-group>
<person-group person-group-type="editor">
<name>
</name>
</person-group>
<source><![CDATA[A velhice, o tempo e a morte: subsídios para a continuidade dos estudos]]></source>
<year>1998</year>
<publisher-loc><![CDATA[Brasília ]]></publisher-loc>
<publisher-name><![CDATA[Editora da Universidade de Brasília]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B15">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[LUFT]]></surname>
<given-names><![CDATA[L.]]></given-names>
</name>
</person-group>
<source><![CDATA[Perdas e ganhos]]></source>
<year>2004</year>
<edition>23</edition>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Record]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B16">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[MANNONI]]></surname>
<given-names><![CDATA[M.]]></given-names>
</name>
</person-group>
<source><![CDATA[O nomeável e o inominável: a última palavra da vida]]></source>
<year>1995</year>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Zahar]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B17">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[MESSY]]></surname>
<given-names><![CDATA[J.]]></given-names>
</name>
<name>
<surname><![CDATA[Werneck]]></surname>
<given-names><![CDATA[José]]></given-names>
</name>
</person-group>
<source><![CDATA[A pessoa idosa não existe: uma abordagem psicanalítica da velhice]]></source>
<year>1993</year>
<publisher-loc><![CDATA[São Paulo ]]></publisher-loc>
<publisher-name><![CDATA[Aleph]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B18">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[MINAYO]]></surname>
<given-names><![CDATA[M.C.]]></given-names>
</name>
<name>
<surname><![CDATA[COIMBRA JR.]]></surname>
<given-names><![CDATA[C.]]></given-names>
</name>
</person-group>
<source><![CDATA[Antropologia, saúde e envelhecimento]]></source>
<year>2002</year>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Fiocruz]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B19">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[MORIN]]></surname>
<given-names><![CDATA[E.]]></given-names>
</name>
</person-group>
<source><![CDATA[L'homme et la mort]]></source>
<year>1970</year>
<publisher-loc><![CDATA[Paris ]]></publisher-loc>
<publisher-name><![CDATA[Seuil]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B20">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[OLIVEIRA]]></surname>
<given-names><![CDATA[F.P.]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[Finitude na experiência religiosa]]></article-title>
<person-group person-group-type="editor">
<name>
<surname><![CDATA[PY]]></surname>
<given-names><![CDATA[L.]]></given-names>
</name>
</person-group>
<source><![CDATA[Finitude: uma proposta para reflexão e prática em gerontologia]]></source>
<year>1999</year>
<page-range>45-54</page-range><publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[NAU]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B21">
<nlm-citation citation-type="journal">
<person-group person-group-type="author">
<name>
<surname><![CDATA[PAULA CARVALHO]]></surname>
<given-names><![CDATA[J.C.]]></given-names>
</name>
</person-group>
<article-title xml:lang="pt"><![CDATA[Velhice, alteridade e preconceito: dimensões do imaginário grupal com idosos]]></article-title>
<source><![CDATA[Interface - Comunic., Saúde, Educ.]]></source>
<year>1999</year>
<volume>3</volume>
<numero>5</numero>
<issue>5</issue>
<page-range>29-40</page-range></nlm-citation>
</ref>
<ref id="B22">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[PY]]></surname>
<given-names><![CDATA[L.]]></given-names>
</name>
</person-group>
<source><![CDATA[Finitude: uma proposta para reflexão e prática em gerontologia]]></source>
<year>1999</year>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[NAU]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B23">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[ROY]]></surname>
<given-names><![CDATA[J-P.]]></given-names>
</name>
</person-group>
<source><![CDATA[Bachelard ou le concept contre l'image]]></source>
<year>1977</year>
<publisher-loc><![CDATA[Montreal ]]></publisher-loc>
<publisher-name><![CDATA[Presses de l'Université de Montreal]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B24">
<nlm-citation citation-type="">
<person-group person-group-type="author">
<name>
<surname><![CDATA[TERRA]]></surname>
<given-names><![CDATA[A.P.]]></given-names>
</name>
</person-group>
<source><![CDATA[O imaginário de um grupo de cuidadores de idosos asilados]]></source>
<year>2007</year>
</nlm-citation>
</ref>
<ref id="B25">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[THOMAS]]></surname>
<given-names><![CDATA[L.V.]]></given-names>
</name>
</person-group>
<source><![CDATA[Anthropologie de la mort]]></source>
<year>1980</year>
<publisher-loc><![CDATA[Paris ]]></publisher-loc>
<publisher-name><![CDATA[Payot]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B26">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[TOLSTOI]]></surname>
<given-names><![CDATA[L.]]></given-names>
</name>
<name>
<surname><![CDATA[Rebelo]]></surname>
<given-names><![CDATA[Marques]]></given-names>
</name>
</person-group>
<source><![CDATA[A morte de Ivan Illitch e senhores e servos]]></source>
<year>1963</year>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Tecnoprint]]></publisher-name>
</nlm-citation>
</ref>
<ref id="B27">
<nlm-citation citation-type="book">
<person-group person-group-type="author">
<name>
<surname><![CDATA[ZIEGLER]]></surname>
<given-names><![CDATA[J.]]></given-names>
</name>
<name>
<surname><![CDATA[Weissemberg]]></surname>
<given-names><![CDATA[Áurea]]></given-names>
</name>
</person-group>
<source><![CDATA[Os vivos e a morte: uma sociologia da morte no ocidente e na diáspora Africana no Brasil e seus mecanismos culturais]]></source>
<year>1977</year>
<publisher-loc><![CDATA[Rio de Janeiro ]]></publisher-loc>
<publisher-name><![CDATA[Zahar]]></publisher-name>
</nlm-citation>
</ref>
</ref-list>
</back>
</article>
