Hi, first of all sorry if I posted this in the wrong section.
I am a fairly experienced developper in quite a few languages but a total newbie in flash development.
What I want to ask is this, is it possible to escape some values from a url query string so that the player doesnt process them and they get sent to the server?

To provide a few more details, i'm using the flippingBook engine from http://page-flip.com/products.htm (the html version). This engine gets a list of image url's as parameters in order to create a book.
The problem I'm encountering is that you can specify the parameters of each image/page exclusively by using query string parameters in a specific image url, ie /dir/myimage.jpg?param1=value&param2=value.
But the images i'm using are generated through the GET parameters sent to the server, for example http://mydomain.com/images/test.jpg?id=111&size=Large

As you can probably understand the pageflip engine imports those parameters and leaves my image url as http://mydomain.com/images/test.jpg
Is there any way to force the engine to ignore those parameters and pass them to the server?
I have tried escaping them through javascript, so that "?" becomes "% 3 F" but I had no luck that way.

Thank you for the help.