/**************************************************************
* Copyright   : Infinamic, Inc. 2004
* Support     : support[at]infinamic[dot]com
* Sales		  : sales[at]infinamic[dot]com
* Create Date : 06/13/2004
* Modify Date : 06/14/2004
***************************************************************
* Purpose     : Makes a selected table row visible or hidden.
* 
* Inputs      : tagId : HTML tag ID attribute.
*
* Returns     : N/A
*
* Requires    : Browser support for the DOM getElementById 
*			  : method.
**************************************************************/

function rowSwap(tagId)
{
	if (document.getElementById)
	{
		if(document.getElementById(tagId).style.display == 'none')
		{
			document.getElementById(tagId).style.display = '';
		}
		else
		{
			document.getElementById(tagId).style.display = 'none';
		}
		return false;
	}
}