// Send out the event notification
if (eventReceiver != null && !string.IsNullOrEmpty(functionName))
{
current = this;
string[] temp
= new string[2]; temp[0] = "" + mChecked;
temp[1] = current.gameObject.name;
eventReceiver.SendMessage(functionName, temp, SendMessageOptions.DontRequireReceiver);
}