Modified the screen writing code to move the divider bar between the top
and bottom windows to the center, regardless of the screen resolution.

Now, Click looks great in larger screen resolutions.

---

Linked with Blinker 5. Click! is now compressed with Blinker file
compression instead of WWPACK.EXE, allowing me to link Click! in
protected mode.

---

Version 1.13b3 formatted classes with an extra empty line, like:

Class Foo


Method init

EndClass

The extra empty line is now removed.

Class Foo

Method init

EndClass

---

Click! previously formatted a method in a class without any scope
modifier like:

Class Foo
Method init
EndClass

It is now only indented a single level.

Class Foo
Method init
EndClass