--- /dev/null
+These files comprise the Vectorized Playing Cards 1.3 graphics library.
+
+Vectorized Playing Cards 1.3 Graphics Library is free software: you can
+redistribute it and/or modify it under the terms of the GNU Lesser General
+Public License as published by the Free Software Foundation, either version 3
+of the License, or (at your option) any later version.
+
+Vectorized Playing Cards 1.3 Library is distributed in the hope that it
+will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the Vectorized Playing Cards 1.3 Graphics Library.
+If not, see <http://www.gnu.org/licenses/>.
+
+______________________________________________
+
+Vectorized Playing Cards 1.3
+http://code.google.com/p/vectorized-playing-cards/
+Copyright 2011 - Chris Aguilar
+
+Licensing terms can be found in the files "Copying.txt" and "COPYING.LESSER.txt"
+
+__________________________
+
+This complete set of 52 playing card faces is based off the standard set dating
+back to the late 1900's and in use in most modern decks today. The cards were
+initially scanned from a real deck at 600 DPI and then auto traced with Inkscape
+( www.inkscape.org ) as a starting point. Nearly every line/node was redrawn
+from this initial starting point and then optimized to decrease file size and
+create cleaner curves, sharper transitions, etc.
+
+For .SVG capable editors (Inkscape and Illustrator CS5 tested) the cards are
+offered individually (with and without crop marks) as a complete set of 52 (full
+color), as a complete set of 52 (gray-scale) and as a complete set of 52 (High
+contrast B/W). For those needing .eps, a complete conversion of all 52 faces (
+singly) plus the two backs is also offered. A template with various card
+elements (pips, numbers, etc.) is included for those who wish to use the
+discrete objects.
+
+There is now also a small set of ESP cards added.
+__________________________
+
+
+When using this library, please include with your project (be it a book,
+program, derivative work, etc) the following attribution/credit per the LGPL 3.0
+licensing terms:
+
+
+Vectorized Playing Cards 1.3- http://code.google.com/p/vectorized-playing-cards/
+Copyright 2011 - Chris Aguilar
+Licensed under LGPL 3 - www.gnu.org/copyleft/lesser.html
echo ' <tr><td>'.('Card set').": </td><td>\n";
echo " <select id=\"cards\" name=\"cards\" size=\"1\">\n";
-echo " <option value=\"english\" selected=\"selected\">"._('English cards')."</option>\n";
+if($PREF['cardset']=="english2")
+ {
+ echo " <option value=\"english\" >"._('English cards')."</option>\n";
+ echo " <option value=\"english2\" selected=\"selected\">"._('English cards 2')."</option>\n";
+ }
+ else /* default */
+ {
+ echo " <option value=\"english\" selected=\"selected\">"._('English cards')."</option>\n";
+ echo " <option value=\"english2\" >"._('English cards 2')."</option>\n";
+ };
echo " </select>";
if($changed_cards) echo _('changed');
echo " </td></tr>\n";