var g_aPublicationIds = {};

// --------------------------------------------------------------------
function jfn_show_hide_abstract(id, iShow)
{
	var eCommandLine 	= document.getElementById('abstract_command_line_' + id);
	var eContent			= document.getElementById('abstract_content_' + id);
	var bShow;
	
	if (iShow == -1)
	{
		if (eContent.style.display == 'none')	bShow = 1;
		else bShow = 0;
	}
	else bShow = iShow;
	
	if (bShow)
	{
		eContent.style.display = '';
		eCommandLine.innerHTML = 'Hide Abstract';
	}
	else
	{
		eContent.style.display = 'none';
		eCommandLine.innerHTML = 'Abstract';
	}
}
// end jfn_show_hide_abstract()
