function displayFullArticle(id,show)
{
	if(show)
	{
		$("clickformore-"+id).style.display="none";
		$("moretext-"+id).style.display="inline";
	}
	else
	{
		$("clickformore-"+id).style.display="inline";
		$("moretext-"+id).style.display="none";
	}
}