Help with carousel problem

hello, i have purchased a carousel component that will display several product logos. My issue is that with the component, when a logo is clicked it simply opens a larger version of the logo in a new window (eg click logo 1_logo.gif and it opens up a new window 1.gif) what I would like to have is have each logo linked to an outside url rather than just a picture. I know it seems simple but the code is not very friendly and the company offers very little support. the following is the code associated with the bulk of the actions of the component and after that is the code form the external xml file: - ANY HELP is appreciated!
Dave

import mx.utils.Delegate;
import mx.transitions.Tween;
import mx.transitions.easing.;
var numOfItems:Number;
var radiusX:Number = 330;
var radiusY:Number = 100;
var centerX:Number = Stage.width/2;
var centerY:Number = Stage.height/2;
var speed:Number = 0.007;
var perspective:Number = 10;
var home:MovieClip = this;
theText._alpha = 0;
var theText:MovieClip = this.attachMovie(“theText”, “theText”, 10000);
theText._alpha = 0;
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function() {
var nodes = this.firstChild.childNodes;
numOfItems = nodes.length;
for (var i = 0; i<numOfItems; i++) {
var t = home.attachMovie(“cuadro”, “cuadro”+i, i+1);
t.angle = i
((Math.PI2)/numOfItems);
t.onEnterFrame = mover;
t.toolText = nodes
.attributes.theText;
t.content = nodes*.attributes.content;
t.objecto.inner.loadMovie(nodes*.attributes.image);
t.r.inner.loadMovie(nodes*.attributes.image);
t.numero = i
t.objecto.onRollOver = over;
t.objecto.onRollOut = out;
t.objecto.onRelease = released;
}
};
function over() {
//BONUS Section
var sou:Sound = new Sound();
sou.attachSound(“sover”);
sou.start();
home.theText.tipText.text = this._parent.toolText;
home.theText._x = this._parent._x;
home.theText._y = this._parent._y-this._parent._height/2;
home.theText.onEnterFrame = Delegate.create(this, moveTip);
home.theText._alpha = 100;
}
function out() {
delete home.theText.onEnterFrame;
home.theText._alpha = 0;
}
function released() {
getURL (this._parent.numero+".jpg")
}
function unReleased() {
//BONUS Section
var sou:Sound = new Sound();
sou.attachSound(“sdown”);
sou.start();
delete this.onRelease;
var tw:Tween = new Tween(theText, “_alpha”, Strong.easeOut, 100, 0, 0.5, true);
for (var i = 0; i<numOfItems; i++) {
var t:MovieClip = home[“cuadro”+i];
if (t != this._parent) {
var tw:Tween = new Tween(t, “_xscale”, Strong.easeOut, 0, t.theScale, 1, true);
var tw2:Tween = new Tween(t, “_yscale”, Strong.easeOut, 0, t.theScale, 1, true);
var tw3:Tween = new Tween(t, “_alpha”, Strong.easeOut, 0, 100, 1, true);
} else {
var tw:Tween = new Tween(t, “_xscale”, Strong.easeOut, 100, t.theScale, 1, true);
var tw2:Tween = new Tween(t, “_yscale”, Strong.easeOut, 100, t.theScale, 1, true);
var tw3:Tween = new Tween(t, “_x”, Strong.easeOut, t._x, t.xPos, 1, true);
var tw4:Tween = new Tween(t, “_y”, Strong.easeOut, t._y, t.yPos, 1, true);
tw.onMotionStopped = function() {
for (var i = 0; i<numOfItems; i++) {
var t:MovieClip = home[“cuadro”+i];
t.objecto.onRollOver = Delegate.create(t.objecto, over);
t.objecto.onRollOut = Delegate.create(t.objecto, out);
t.objecto.onRelease = Delegate.create(t.objecto, released);
t.onEnterFrame = mover;
}
};
}
}
}
function moveTip() {
home.theText._x = this._parent._x;
home.theText._y = this._parent._y-this._parent._height/2;
}
xml.load(“edit.xml”);
function mover() {
this._x = Math.cos(this.angle)*radiusX+centerX;
this._y = Math.sin(this.angle)radiusY+centerY;
var s = (this._y-perspective)/(centerY+radiusY-perspective);
this._xscale = this._yscale=s
100;
this.angle += this._parent.speed;
this.swapDepths(Math.round(this._xscale)+100);
}
this.onMouseMove = function() {
speed = (this._xmouse-centerX)/10000;
};

external xml file:

<objectos>
<objecto image=“thumb_1.gif”/>
<objecto image=“thumb_2.gif”/>
<objecto image=“thumb_3.gif”/>
<objecto image=“thumb_4.gif”/>
<objecto image=“thumb_5.gif”/>
<objecto image=“thumb_6.gif”/>
<objecto image=“thumb_7.gif”/>
<objecto image=“thumb_8.gif”/>
<objecto image=“thumb_9.gif”/>
<objecto image=“thumb_10.gif”/>
<objecto image=“thumb_11.gif”/>
<objecto image=“thumb_12.gif”/>
<objecto image=“thumb_13.gif”/>
<objecto image=“thumb_14.gif”/>
<objecto image=“thumb_15.gif”/>
<objecto image=“thumb_16.gif”/>
<objecto image=“thumb_17.gif”/>
</objectos>