/**************************************************************
* Copyright   : Infinamic, Inc. 2004
* Support     : support[at]infinamic[dot]com
* Sales		  : sales[at]infinamic[dot]com
* Create Date : 06/02/2004
* Modify Date : 06/07/2004
***************************************************************
* Purpose     : Makes a selected text block visible or hidden.
* 
* Inputs      : tagId     : HTML tag ID attribute.
*			  : texAction : Action of 'hidden' or 'visible'.
*
* Returns     : N/A
*
* Requires    : Browser support for the DOM getElementById 
*			  : method.
**************************************************************/

function textSwap(tagId, textAction)
{
	if (document.getElementById)
	{
		document.getElementById(tagId).style.visibility = textAction;
	}
}