/// <summary>
		/// Creates the table cell span.
		/// </summary>
		/// <param name="node">The node.</param>
		/// <returns></returns>
		private CellSpan CreateTableCellSpan(XmlNode node)
		{
			try
			{
				//Create a new CellSpan
				CellSpan cellSpan			= new CellSpan(this._document, node);
				
				//No need for a warnings or styles

				return cellSpan;
			}
			catch(Exception ex)
			{
				throw new AODLException("Exception while trying to create a Table CellSpan.", ex);
			}
		}
        /// <summary>
        /// Creates the table cell span.
        /// </summary>
        /// <param name="node">The node.</param>
        /// <returns></returns>
        private CellSpan CreateTableCellSpan(XmlNode node)
        {
            try
            {
                //Create a new CellSpan
                CellSpan cellSpan			= new CellSpan(this._document, node);

                //No need for a warnings or styles

                return cellSpan;
            }
            catch(Exception ex)
            {
                AODLException exception		= new AODLException("Exception while trying to create a Table CellSpan.");
                exception.InMethod			= AODLException.GetExceptionSourceInfo(new StackFrame(1, true));
                exception.Node				= node;
                exception.OriginalException	= ex;

                throw exception;
            }
        }