﻿function MoveAttachment(containerId)
{
	var attachmentPart = document.getElementById('partAttachment');
	var attachmentPartContent = attachmentPart.outerHTML;
	attachmentPart.parentNode.removeChild(attachmentPart);
	var parentAttachment = document.getElementById(containerId);
	parentAttachment.innerHTML += attachmentPartContent;
}
