Adobe Player Error

Hi

I’ve recently added a flash movie to our company Intranet at work (AS below), it worked fine for a week or so but now were getting the following error;

[COLOR=red]“A script in this movie is causing Adobe Flash Player 9 to run slowly. If it continues to run, your computer may become unresponsive. Do you want to abort the script?”[/COLOR]
[COLOR=#ff0000][/COLOR]
[COLOR=black]Does anyone know how to fix this?[/COLOR]

[COLOR=red]this.createEmptyMovieClip(“theScene”, 1);
theScene._x = 220;
theScene._y = 5;
objectsInScene = new Array();

spin = 0;
focalLength = 500;

displayPane = function ()
{ var angle = this.angle-spin;
var x = Math.cos(angle)this.radius;
var z = Math.sin(angle)this.radius;
var y = this.y;
var scaleRatio = focalLength/(focalLength+z);
this._x = x
scaleRatio;this._y = y
scaleRatio;
this._xscale = this._yscale=100*scaleRatio;
this._xscale *= Math.sin(angle);
this.swapDepths(Math.round(-z));};

angleStep = 2Math.PI/5;
for (i=0; i<6; i++) {
attachedObj = theScene.attachMovie(“pane”+i, “pane”+i, i);
attachedObj.angle = angleStep
i;
attachedObj.radius = 150;
attachedObj.x = Math.cos(attachedObj.angle)*attachedObj.radius;
attachedObj.z = Math.sin(attachedObj.angle)attachedObj.radius;
attachedObj.y = 40;
attachedObj.display = displayPane;
objectsInScene.push(attachedObj);
}
panCamera = function () { spin += this._xmouse/2500;
for (var i = 0; i<objectsInScene.length; i++) {objectsInScene
.display();
}
};

theScene.onEnterFrame = panCamera;
[/COLOR]