* Mandelbrot Viewer by Tim Goodwyn

* Zoom: once the picture has finished loading, click anywhere to zoom in on that area.

* Command-line switches/arguments:
(Make sure you include the hyphen before them, and don't use more than one switch!)
-lores
-medres
-hires
-vhires
-help or -? or /?

If no switch is supplied, the -medres option is used.
-lores 	is a pixelated and fast view - each "pixel" is made of four
	screen pixels. The expression z * z + c is iterated 20 times.
-medres is slower, and the expression z * z + c is iterated 200 times.
-hires	is even slower, and has 1000 iterations
-vhires is very slow, using 4000 iterations. This should be the best
	quality picture. This might not be noticeable on the first few
	zooms, but when the picture is zoomed in a lot, it ought to look
	better than the other options.
-help	brings up a messagebox with these options listed.

