//Version 1.0 Version Date 2009-01-14
function ToggleDisplayStatus(target)
{
	if (typeof target == 'string')
	{
		target=document.getElementById(target);
	}
	if (target)
	{
		if (target.style.display=='none')
		{
			target.style.display='';
		}
		else
		{
			target.style.display='none';
		}
	}
}
