What am I doing wrong with this function?

try
_global.subControl = function(mc, mc2) {

mc.onRollOver = function() {
	mc.colorTo("0x00CC00", 0.5, "easeOutExpo");
	_level0.all.pulseMC[mc2].gotoAndPlay("play");
};
mc.onRollOut = function() {
	mc.colorTo("0xCCCCCC", 0.5, "easeOutExpo");
};

};
_level0.all.content.subMenu.btn2.onEnterframe =
function() {
subControl(this,“pulseMC1”)
};