Yep. What also works (and saves some typing) is this:
JScript code:
function OnWndSubclassEvent_MessageNotification(PlusWnd,Message,wParam,lParam) {
switch(wParam) {
case 0x100:
// do stuff
break;
case 0x101: // A different ID for a different hotkey
// do other stuff
break;
case 0xN:
// do other other stuff
break;
}
// do whatever else ya want
}