duplicate pages in Quark issue

I am creating a script that can combine multiple Quark documents into a single Quark document. Works great as long as there aren’t any linked text boxes between the pages.

I’m duplicating the entire page from each document to after the last page of my combined document. When I use the duplicate command in Quark to duplicate a page that contains linked text boxes, all of the links get broken incorrectly and the first part of the story flows into the text boxes.

This is the basic line of script that I’m having problems with:

tell application "QuarkXPress"
		duplicate page 2 of document 1 to after page -1 of document 2
	end tell

Page 2 of document 1 contains a linked text box that links to a story from page 1.

Is there a workaround to this issue?

Jeff