/*	**************************************
	Global Functions
	Copyright (C) United Gamers Clan 2009
	Original name: globalfunct.js
	
	Author(s): Winky
	**************************************
*/
function toggleAuthorInfo ( authorPostID )
{
	var element = document.getElementById('authorInfo' + authorPostID);
	if ( element.style.display == 'none' )
	{
		element.style.display = '';
	}
	else
	{
		element.style.display = 'none';
	}
}

function hideInfoWhenDone ( authorPostID )
{
	document.getElementById('authorInfo' + authorPostID).style.display = 'none';
	document.getElementById('iconMagnif' + authorPostID).style.display = '';
}