function fnShowHideContent()
			{
			var oEl = event.srcElement;
			 var bCollapsed;   
       
            var oTableRow2  = oEl.parentElement.parentElement.parentElement.rows[1];
            var bCollapsed = ( (oTableRow2.style.display == "none") ? true : false);
            
            //var oContent  = oPart.rows[1];
            //var oSwapImg    = oEl.parentElement.parentElement.parentElement.rows[0].cells[0].children[0];

            if ( bCollapsed )
            {

                // -- if the table row is already collapsed, expand it & swap the images --
                    oTableRow2.style.display = "inline";
                   
                    //oSwapImg.src = "/web/images/topItem_col.gif";
                   //----- writing back the state info to the array -------
                   
             }
             else
             {
                // expand the table row & swapping the images
					oTableRow2.style.display = "none";
					
                   //oSwapImg.src = "/web/images/topItem_exp.gif";			

             }
                      
}