PMStripper and Netscape 4.04

I used the following REXX CMD file to install PMStripper
as the source viewer in Netscape 4.04 under Warp 4

My boot drive is L: and Netscape is installed on drive
N: in the directory \NETSCAPE.  PMStripper is installed
on drive N: in directory \PMSTRIPPER.

Remember the the REXX CMD file MUST start with a comment line
and watch for line wraps inserted by your browser or editor.

/* IniName points to the location of your NSCP.INI */
/* Change NSDir to the directory where NS40 is installed */
/* Change InstallDrive to the drive where NS40 is installed */
/* Change en to be the two character identifier for your browser */

IniName = 'L:\OS2\NSCP.INI'
InstallDrive = 'N:'
NSDir = InstallDrive||'\NETSCAPE'
InstallDir = NSDir'\Program'
NSVersion = '4.04 (en)'
call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
call SysLoadFuncs

/* Add Registry entries for View Source */
call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource','URL:View Source'
call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell',0
call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell\open',0
call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell\open\command','N:\PMSTRIPPER\PMSTRIP.EXE'


