Help view
hi, please i use the help button to show a Help view, but i have a problem,
when I click in my help button I lost my parent page and I have a other page,
how can I still in my parent Page in the some time having my help view.
my parent page is a custom page.

I use this code :
when i click in my button help i call "CreateHelpButton"

Function CreateHelpButton

nsDialogs::Create 1018
Pop $0

StrCmp $0 error 0 +2
Abort
call CreateCustomDialog

nsDialogs::Show

FunctionEnd

Function CreateCustomDialog

Pop $0
nsWindows::Create $0 0 ${WS_VISIBLE}|${WS_SYSMENU}|${WS_CAPTION} "Help dialog" 1018
Pop $1

${NSW_SetWindowSize} $1 500 350
${NSW_CenterWindow} $1 $HWNDPARENT

StrCmp $1 error 0 +2
Abort

EnableWindow $0 0

${NSW_CreateGroupBox} 3% 4% 90% 10% "blabal"
Pop $R0
${NSW_CreateLabel} 8% 8% 70% 5% "blabal"
Pop $R1

${NSW_CreateGroupBox} 3% 19% 90% 10% "blabal"
Pop $R2
${NSW_CreateLabel} 8% 23% 70% 5% "blabal"
Pop $R3

${NSW_CreateGroupBox} 3% 34% 90% 10% "blabal"
Pop $R4
${NSW_CreateLabel} 8% 38% 70% 5% "blabal"
Pop $R5

${NSW_CreateGroupBox} 3% 49% 90% 10% "blabal"
Pop $R6
${NSW_CreateLabel} 8% 53% 70% 5% "blabal"
Pop $R7

${NSW_CreateGroupBox} 3% 64% 90% 10% "blabal"
Pop $R8
${NSW_CreateLabel} 8% 68% 70% 5% " blabal"
Pop $R9

${NSW_CreateButton} 50% 84% 10% 5% "OK"
Pop $R1

${NSW_OnClick} $R1 CloseCustomDialog
nsWindows::Show
FunctionEnd

Function CloseCustomDialog

SendMessage $1 ${WM_CLOSE} 0 0

FunctionEnd

pleaaase help me!!!!