Or the other way around
js code:
function OnEvent_Initialize() {
if (Messenger.MyStatus < STATUS_INVISIBLE) return;
// Do stuff here
}
function OnEvent_SigninReady( Email ) { OnEvent_Initialize(); }
Which in my opinion is better because one less function call.