Poker Solitaire  v1.0
 Another Public Domain game by Daniel Kalna
 I can be reached at: Helenh@utarlg.uta.edu

 This program was written in QuickBasic 4.5
 Compile this program for greater speed.
 Except where noted, all code was written by me.

NOTE!
 To run this program in the QB45 enviroment,
 run QB45 using the default library:
      ex:  QB poker /L


GAME PLAY

 A deck of 52 cards are shuffled. 

 The top 25 cards are used in the game play.

 The top card is display.

 You then place the card on the table in one of the twenty five places.
 The table is made up of a 5x5 grid. The object of the game is to
 create scoring poker hands.  The hands go across and down.

 The valid hands and their scores are displayed when you play.
 Two pairs score the lowest, a Royal Flush scores the highest.

 That is all there is to it.


PROGRAMMING NOTES:

 The deck of cards used in this game was created by an unknown person.
 Somebody converted the pictures to binary making it easy to add the
 playing cards to any basic game.   I used a fast binary loading
 routine to displays the cards.  Check out the DISPCARD sub-routine
 in the program to see how I did it.  


FUTURE UPDATES:

 I have no plans to improve this code.  

 I might add the code to allow jokers in the game later on. Maybe
 someone else would like to?
