I have a MC named Face2 and a button named square2, what I would like to do is write a piece of code that will allow me to put the same properties to an MC named Face3 using a button named Square3, but without having to write out all this code again.

stop();
// square2 Button highlights picture face2
myColourObject = new Color(Face2);
TransformObj = new Object();
TransformObj = {ra:'100', rb:'150', ga:'75', gb:'200', ba:'20', bb:'188', aa:'50', ab:'255'};
square2.onRollOver = function() {
myColourObject.setTransform(TransformObj);
Square2.onRelease = function() {
setProperty(Panel02, _visible, 0);

loadMovie("08.swf", "Panel02");
};
gotoAndStop(5);
// RollOut
myColourObject2 = new Color(Face2);
TransformObj2 = new Object();
TransformObj2 = {ra:'100', rb:'0', ga:'100', gb:'0', ba:'100', bb:'0', aa:'100', ab:'0'};
square2.onRollOut = function() {
myColourObject2.setTransform(TransformObj2);