/**
 * PROPRIETARY RIGHTS NOTICE:  All rights reserved. No part of the code
 * (source,object,executable), screen-images, report-formats, database
 * schemas, and documentation of this program may be reproduced or transmitted
 * in any manner without the License or expressed written permission of
 * TEDS, LLC  P.O. Box 700, Atkins, VA 24311.
 * All parts of the code (source,object,executable), screen-images,
 * database schemas, report-formats, and documentation of this program
 * are considered proprietary information and should only be accessible
 * by those identified in the License.
 */

/**
 * Append overlayPanel to widget's parent.
 */
var appendToParentOfWidget = function(overlayPanel,widget) {
	if (overlayPanel != null && widget != null) {
		overlayPanel.jq.appendTo(widget.jq.parent());
	}
}
