INTERACTIVE IMAGE PAN Pleeease help

Hey Everybody, I am a young bachelor student from germany, I am doing my bachelor thesis right now. Theoretical part is done, the practical remains (has to be ready by monday) - An Interactive Campus Map. I have all but the map navigation planned and I an interesting tutorial here gave me the idea to pan the image. I modified it a bit so that it works vertically and horizontically.
But I swear, I can’t think of way to make this work if the register point of the panned MovieClip is at its absolute center!!! PPLLLLEAAASSEEEE help me if you can… here is the modified function:

TUT: http://www.kirupa.com/developer/flash8/interactive_image_pan.htm

MODIFIED FUNCTION:

function constrainedMove(target:MovieClip, speed:Number) {
var mousePercentX:Number = _xmouse/Stage.width;
var mousePercentY:Number = _ymouse/Stage.height;
var mSpeedX:Number;
var mSpeedY:Number;

mSpeedX = mousePercentX;
mSpeedY = mousePercentY;

target.destX = Math.round(-((target._width-(Stage.width))*mSpeedX));
target.destY = Math.round(-((target._height-(Stage.height))*mSpeedY));

target.onEnterFrame = function() {
if ((target._x == target.destX)&&(target._y == target.destY)) {
delete target.onEnterFrame;
}
else {
target._x -= Math.ceil(((target._x-target.destX)(speed/100)));
target._y -= Math.ceil(((target._y-target.destY)
(speed/100)));
}
};
}

Is there someone who would like to help me? I will be here trying to think of something and I would reeeeally appreciate a small hint.
10x and greets from dresden