function lang(langSymbol, langName, langNotes)
{
	this.symbol = langSymbol;
	this.name = langName;
	this.notes = langNotes;
}

var langArray = new Array();

function addLang(langSymbol, langName, langNotes)
{
	langArray[langArray.length] = new lang(langSymbol, langName, langNotes);
}

function setUpLanguages()
{
	addLang("SCH", "Simplified Chinese", "Mainland China");
	addLang("TCH", "Traditional Chinese", "Taiwan, Singapore");
	addLang("ENG", "English", "USA");
	addLang("FRN", "French", "France");
	addLang("GER", "German", "Germany");
	addLang("ITA", "Italian", "Italy");
	addLang("JAP", "Japanese", "Japan");
	addLang("KOR", "Korean", "Korea (OOP)");
	addLang("POR", "Portuguese", "Brazil, Portugal");
	addLang("RUS", "Russian", "Russian Federation, Poland, Czech Republic");
	addLang("SPA", "Spanish", "Mexico, Spain");
	addLang("SWE", "Swedish", "Sweden, no real cards printed in this language");
}

function edition(editionSymbol, editionName, edShortName, editionNotes)
{
	this.symbol = editionSymbol;
	this.name = editionName;
	
	if (edShortName == "")
	{
		this.shortname = this.name;
	}
	else
	{
		this.shortname = edShortName;
	}
	
	this.notes = editionNotes;
}

var editionArray = new Array();

function addEdition(editionSymbol, editionName, editionShortName, editionNotes)
{
	editionArray[editionArray.length] = new edition(editionSymbol, editionName, editionShortName, editionNotes);
}

function setUpEditions()
{
	addEdition("PAPT",	"Pre-Alpha Playtest",			"",		"Unique cards used for playtesting prior to the release of Magic: The Gathering.");
	addEdition("A",		"Alpha",				"",		"");
	addEdition("B",		"Beta",					"",		"");
	addEdition("UL",	"Unlimited",				"Unl",		"");
	addEdition("RVBB",	"Black-bordered Revised",		"BB Rev",	"Available in France, Germany, and Italy");
	addEdition("RV",	"Revised",				"Rev",		"");
	addEdition("RVWB",	"White-bordered Revised",		"WB Rev",	"");
	addEdition("SM",	"Summer Magic (Edgar)",			"Summer",	"");
	addEdition("A4E",	"Alternate Fourth Edition",		"Alt 4th",	"This set was made for WotC by a different printing firm.  Due to a legal settlement the cards were supposed to have been destroyed.  <A HREF=\"http://www.mtgnews.com/story/988/1/1/3\" style=\"color: yellow;\" TARGET=\"_BLANK\">Details</A>.");
	addEdition("4EBB",	"Black-bordered Fourth Edition",	"BB 4th",	"Available in Taiwan, Japan, Korea, Brazil, Portugal, Mexico &amp; Spain");
	addEdition("4E",	"Fourth Edition",			"4th",		"");
	addEdition("4EWB",	"White-bordered Fourth Edition",	"WB 4th",	"");
	addEdition("5E",	"Fifth Edition",			"5th",		"");
	addEdition("6E",	"Sixth Edition",			"6th",		"");
	addEdition("7E",	"Seventh Edition",			"7th",		"");
	addEdition("7EF",	"Seventh Edition Foil",			"7th Foil",	"");
	addEdition("8E",	"Eighth Edition",			"8th",		"");
	addEdition("8EF",	"Eighth Edition Foil",			"8th Foil",	"");
	addEdition("9EBB",	"Black-bordered Ninth Edition",		"BB 9th",	"Available in the Russian federation.");
	addEdition("9EBBF",	"Black-bordered Ninth Edition Foil",	"BB 9th Foil",	"Available in the Russian federation.");
	addEdition("9E",	"Ninth Edition",			"9th",		"");
	addEdition("9EF",	"Ninth Edition Foil",			"9th Foil",	"");
	addEdition("CE",	"Collector's Edition",			"Collector's",	"");
	addEdition("ICE",	"International Collector's Edition",	"Int Coll",	"");
	addEdition("DCI",	"DCI Promo Foil",			"",		"");
	addEdition("IA",	"Ice Age",				"",		"");
	addEdition("MI",	"Mirage",				"",		"");
	addEdition("TE",	"Tempest",				"",		"");
	addEdition("MM",	"Mercadian Masques",			"Merc",		"");
	addEdition("MMF",	"Mercadian Masques Foil",		"Merc Foil",	"");
	addEdition("CK",	"Champions of Kamigawa",		"Champs K",	"");
	addEdition("CKF",	"Champions of Kamigawa Foil",		"Champs K Foil","");
	addEdition("PO",	"Portal",				"",		"");
	addEdition("P2",	"Portal Second Age",			"Portal 2",	"");
	addEdition("P3K",	"Portal Three Kingdoms",		"Portal 3K",	"");
	addEdition("ST",	"Starter",				"",		"");
	addEdition("WC99ML",	"Mark LePine 1999 World Champ Deck",	"WC99ML",	"");
	addEdition("WC00JK",	"Janosch Kuhn 2000 World Champ Deck",	"WC00JK",	"");
}

function donor(donorSymbol, donorAnon, donorName, donorCountry, donorCity, donorType, donorUserId, donorLinkType, donorURL, donorNotes)
{
	this.symbol = donorSymbol;
	this.name = donorName;
	this.country = donorCountry;
	this.city = donorCity;
	this.dtype = donorType;
	this.userId = donorUserId;
	this.linkType = donorLinkType;
	this.URL = donorURL;
	this.notes = donorNotes;
	this.anon = donorAnon;
}

var donorArray = new Array();

function addDonor(donorSymbol, donorAnon, donorName, donorCountry, donorCity, donorType, donorUserId, donorLinkType, donorURL, donorNotes)
{
	donorArray[donorArray.length] = new donor(donorSymbol, donorAnon, donorName, donorCountry, donorCity, donorType, donorUserId, donorLinkType, donorURL, donorNotes);
}

function setUpDonors()
{
	addDonor("??",		"n", "Unknown",					"???",			"???",					"",   "",				"",					"","Due to a 2 year hiatus from officially collecting, I no longer recall the source for this card.  Sorry!");
	addDonor("A-X",		"y", "Rodrigo Possamai",			"Brazil",		"Caxias do Sul, Rio Grande do Sul",	"MT", "Agent-X",			"MTHW",					"","");
	addDonor("AD",		"n", "Allen Densen",				"Canada",		"Toronto, Ontario",			"EB", "allen4444",			"Allen's Magic Info and Trading",	"http://members.rogers.com/allendensen/cards/magic/mtg.htm","Allen's website provides a wealth of information for discerning hard to differentiate foreign editions on a per-card basis.");
	addDonor("AMP",		"y", "Anna Maria Pelella",			"Italy",		"Napoli",				"EB", "tratmo@libero.it",		"EBF",					"","");
	addDonor("ANHC",	"y", "Amos Ng Hon Chiu",			"Hong Kong",		"Heng Fa Chuen",			"EB", "cwfllsp009@mail2.ed.gov.hk",	"EBA",					"","");
	addDonor("ANON",	"y", "Anonymous Donor",				"Europe",		"",					"",   "",				"",					"","");
	addDonor("BB2K",	"n", "Joseph Retaleato",			"USA",			"Ronkonkoma, NY",			"EB", "ButterBoy2K",			"EBA",					"","");
	addDonor("BK",		"y", "Bryan Kwon",				"USA",			"Los Angeles, CA",			"EB", "strangr525",			"EBA",					"","");
	addDonor("BOCK",	"n", "Dan Bock",				"USA",			"Madison, WI",				"EB", "DanBock",			"EMAIL",				"DanABock@aol.com","Dan Bock is most famous for having played an <A style=\"color: yellow;\" HREF='http://www.wizards.com/sideboard/article.asp?x=PTTOK01\897fm1c' TARGET=_blank>all land deck</A> on pro-tour, and for having a card (<A style=\"color: yellow;\" HREF='http://www.wizards.com/sideboard/article.asp?x=MI00\987inviteecards' TARGET=_blank>Bock, Elite Trader</A>) named after him which is functionally similar to him.  This guy has every card, <A style=\"color: yellow;\" HREF='mailto:DanABock@aol.com'>email him</A> if you need any card.");
	addDonor("BT",		"n", "Ben Thompson",				"USA",			"Rancho Santa Margarita, CA",		"OL", "www.benthompsonart.com",		"BenThompsonArt.com",			"http://www.benthompsonart.com/","Ben Thompson has been doing card art for WotC since Mercadian Masques, and created the amazing Stone Rain artwork featured in that set.  You can order proofs, prints, and original works through Ben's site.");
	addDonor("BV",		"n", "Benoit Vreux",				"Belgium",		"Bruxelles",				"MT", "BenoitVreux",			"EMAIL",				"benoit.vreux@arts-sceniques.be","Leading the 'PLAINS PROJECT'!  Collecting basic Plains, all editions, all languages--more than 800!  Please help.");
	addDonor("CA",		"y", "Claude Ardiller",				"France",		"Tannafel, Bordeaux",			"MT", "ClaudeArdiller",			"MTHW",					"","");
	addDonor("CDS",		"n", "Chuck Seggelin",				"USA",			"Fitchburg, MA",			"MT", "PlasteredDragon",		"EMAIL",				"srp@plastereddragon.com","");
	addDonor("CHV",		"y", "Cartes et Hobby Vanier",			"Canada",		"Vanier, Quebec",			"EB", "leolo",				"EBA",					"","");
	addDonor("CSI",		"n", "CoolStuffInc.com",			"USA",			"Casselberry, FL (Orlando area)",	"OL", "www.coolstuffinc.com",		"www.coolstuffinc.com",			"http://www.coolstuffinc.com/","Donated by the proprietor, Jerry Sunkin.  Wide selection at their online store, searchable and easy to use, items priced competitively.");
	addDonor("DANNY",	"n", "Danny Donkers",				"Belgium",		"Vosselaar",				"MT", "Dannibal",			"MTHW",					"202945","Danny collects Earthbinds and Vampirisms.  Do you have any extras?");
	addDonor("DB",		"n", "Dan Barnard",				"USA",			"Green Bay, WI",			"MT", "BernieB",			"MTHW",					"103998","Has HUGE Stone Rain collection.  (More than 10,000 cards!)  Do you have any extras?");
	addDonor("DD",		"y", "Dave Dyer",				"USA",			"Orange, CT",				"MT", "",				"MTHW",					"","");
	addDonor("DJMC",	"n", "David &amp; Judith's Magic Cards",	"USA",			"Ridgecrest, CA",			"EB", "djmagiccards",			"EBA",					"","");
	addDonor("DT",		"y", "David Therrierre",			"France",		"LaRochelle",				"EB", "Wurm4",				"EBA",					"","");
	addDonor("DW",		"n", "David Wieland",				"Netherlads",		"Huizen",				"MT", "potm",				"MTREF",				"","");
	addDonor("ED",		"y", "Etienne Dutreaux",			"Belgium",		"Mont Sur Marchienne",			"EB", "from_Belgium",			"EBA",					"","");
	addDonor("EH",		"y", "Eric Horn",				"USA",			"Harrison, OH",				"EB", "MagicSourceOnline",		"EBA",					"","");
	addDonor("FJ",		"n", "Forrest Johnson",				"USA",			"Woodbury, MN",				"MT", "Inca911",			"EMAIL",				"inca911@hotmail.com","Forrest collects extreme Magic rarities such as test cards, Summer Magic, uncut sheets, as well as old sealed boxes (currently seeking Alpha, Unlimited, and Arabian booster boxes).  Please <A style=\"color: yellow;\" HREF='mailto:inca911@hotmail.com?SUBJECT=Saw%20you%20on%20The%20Stone%20Rain%20Project'>contact him</A> if you have anything unusual that you think he might be interested in, or check out his want-list on MOTL.");
	addDonor("GL",		"n", "Guido Lombardi",				"Italy",		"Nola, Napoli",				"MT", "Guido",				"MTREF",				"","");
	addDonor("GUILD",	"n", "The Magic Guild",				"USA",			"Fitchburg, MA",			"RS", "",				"",					"","For many years, this was the local store I played at.  Sadly it went out of business in 2003.");
	addDonor("HA",		"n", "H&aring;kan Abrahamsson",			"Sweden",		"G&ouml;teborg",			"",   "",				"EMAIL",				"hawkan60@hotmail.com","H&aring;kan is interested in Richard Kane Ferguson &amp; Drew Tucker artwork from all CCG's (not just Magic).  Can you help?  Information or trades welcomed!");
	addDonor("HD",		"n", "Hugh Dengler",				"USA",			"Burlington, VT",			"EB", "brap42@together.net",		"EBA",					"","");
	addDonor("JA",		"n", "Javier Aparicio",				"Mexico",		"Monterrey, Nuevo Leon",		"MT", "Sexican",			"EMAIL",				"rlc4l@yahoo.com","");
	addDonor("JC",		"y", "Jérôme Coudray",				"France",		"Saint Barthélémy",			"EB", "jerome1973",			"EBA",					"","");
	addDonor("JEB",		"n", "Jeb Adams",				"USA",			"Evanston, IL",				"MT", "jeb",				"Jeb's MTG Website",			"http://www.enteract.com/~jeb/mtg.html","");
	addDonor("JLS",		"y", "Jack Stanton",				"USA",			"Salt Lake City, UT",			"EB", "jlstanton",			"EBA",					"","");
	addDonor("JMG",		"n", "Jay McGaffigan",				"USA",			"Tyngsboro, MA",			"MT", "",				"",					"","");
	addDonor("JZM",		"n", "Jay Zeman",				"USA",			"Seattle, WA",				"EB", "jayzeman@hotmail.com",		"EMAIL",				"JayZeman@hotmail.com","");
	addDonor("KARDK",	"n", "KardKastle",				"USA",			"Beaverton, OR",			"EB", "romain1",			"EBA",					"","");
	addDonor("KF",		"y", "Corey Braiterman",			"USA",			"Jersey City, NJ",			"EB", "krmtdfrog",			"EBA",					"","");
	addDonor("KW",		"n", "Kevin White",				"Holland",		"Zwolle",				"MT", "Dr.killer",			"MTREF",				"","");
	addDonor("LANG",	"n", "Dave Lolli, LAN Games",			"USA",			"Leominster, MA",			"MT", "",				"",					"","Since 2003 LAN Games has been our local haunt for Magic hereabouts.  Definitely check it out if you are ever in Leominster, MA.");
	addDonor("LC",		"n", "Leonid Cheorny",				"Russian Federation",	"Moscow",				"MT", "Leocrazy",			"MTREF",				"","");
	addDonor("LESAV",	"n", "Eric LeSavre",				"France",		"Paris",				"MT", "Erl00",				"Unopened Booster Collection",		"http://www.chez.com/erl00/","Please help Eric (a.k.a. Erl00) with his booster collection.");
	addDonor("LP",		"n", "Luis Garcia Jori (Pirusk)",		"Spain",		"Barcelona",				"MT", "Pirusk",				"EMAIL",				"pirusk@arrakis.es","Luis is looking for full T-Chinese mint sets.");
	addDonor("MD",		"y", "Mark Dwyer",				"USA",			"State College, PA",			"EB", "patix",				"EBA",					"","");
	addDonor("MF",		"n", "Michael French",				"Japan",		"Osaka",				"MT", "Michael_French",			"MTREF",				"","");
	addDonor("MILA",	"y", "Michael Larson",				"Europe",		"FPO, AE",				"",   "",				"",					"","");
	addDonor("MIMA",	"y", "Mikael Mallroth",				"Sweden",		"Karlstad",				"",   "",				"",					"","");
	addDonor("MM",		"y", "Martin Mikolajek",			"Germany",		"Rutesheim",				"EB", "mami3",				"EBA",					"","");
	addDonor("MMCN",	"n", "Matthew McNally",				"USA",			"Fitchburg, MA",			"",   "",				"",					"","");
	addDonor("MTG",		"n", "Martin Ruhdorfer",			"Germany",		"Bergkirchen",				"EB", "8-bit-de",			"EBA",					"","Please <A style=\"color: yellow;\" HREF='mailto:MTGMadmaxx@aol.com?SUBJECT=Saw%20you%20on%20The%20Stone%20Rain%20Project'>Contact Martin</A> if you are looking for German cards.");
	addDonor("OTEG",	"y", "Over The Edge Games",			"USA",			"Worcester, MA",			"EB", "overtheedgegames",		"EBA",					"","");
	addDonor("NANDI",	"y", "Nandi Alahan",				"USA",			"Concord, CA",				"EB", "Alahan",				"EBF",					"","");
	addDonor("ND",		"n", "Nathan Daugherty",			"USA",			"Houghton, NY",				"MT", "Thesibut",			"MTREF",				"","Nathan (Thesibut on MOTL) collects Sunken Cities, Flares, Sorrows Paths, Hannah Ship's Navigators, and Fyndhorne Brownies.  Can you help him out?");
	addDonor("GTORK",	"n", "&quot;Gregtork&quot;",			"Spain",		"Madrid",				"",   "",				"The Pete Venters Project",		"http://www.peteventersproject.tk/","Gregtork has set himself the challenging task of collecting one printing of each Pete Venters artwork from each set.  Can you help?");
	addDonor("NK",		"n", "Noah Katz",				"USA",			"Baltimore, MD",			"EB", "max_k",				"EBA",					"","Noah has cards for sale, from Alpha through Ice Age. All are unmarked and unplayed.");
	addDonor("PA",		"n", "Willy Young",				"USA",			"San Leandro, CA",			"MT", "PhyrexianAngel",			"MTHW",					"101269","");
	addDonor("PAOLO",	"n", "Paolo Castellani",			"Italy",		"Asolo, Treviso",			"OL", "castellani@prometeo.com",	"",					"","");
	addDonor("PC",		"y", "Pedro Coutinho",				"Brazil",		"Fortaleza, Ceara",			"MT", "Kerrick",			"MTHW",					"","");
	addDonor("PM",		"n", "Peter Meerhof",				"Netherlands",		"Schiedam",				"MT", "pderpder",			"MTREF",				"","");
	addDonor("RH",		"n", "Ralph Herold",				"Germany",		"Frankfurt",				"OL", "",				"Magic Rarities",			"http://www.flaminio.com/magic/rarities.html","Ralph is the webmaster of the esteemed <A style=\"color: yellow;\" HREF='http://www.magiclibrary.net/' target=_blank>Magic Library</A> website.  He is a collector both of standard and specialty Magic cards and accessories.");
	addDonor("SCG",		"n", "Star City Games",				"USA",			"Roanoke, VA",				"OL", "www.starcitygames.com",		"www.starcitygames.com",		"http://www.starcitygames.com/magic.php","");
	addDonor("SL",		"y", "Steve Low",				"Malaysia",		"Shah Alam, Selangor",			"MT", "Babykid",			"MTHW",					"","");
	addDonor("SM",		"y", "Sarah M.",				"USA",			"Brighton, MA",				"EB", "sarahm397",			"EBF",					"","");
	addDonor("SqE",		"y", "Squirrel Enterprises",			"England",		"Southsea, Hants",			"EB", "mikeesquirrel",			"EBA",					"","");
	addDonor("SW",		"n", "Stefan&quot;W&quot;",			"Sweden",		"Linkoping, Ostergotlands",		"MT", "stewr",				"",					"","");
	addDonor("T&T",		"n", "Troll And Toad",				"USA",			"Corbin, KY",				"OL", "www.trollandtoad.com",		"www.trollandtoad.com",			"http://www.trollandtoad.com/","They are a wonderful source for obscure items.");
	addDonor("TGZ",		"n", "The Game Zone",				"USA",			"Dover, NH",				"EB", "thegamezone",			"EBA",					"","");
	addDonor("TX",		"n", "Kenneth Xiao",				"Singapore",		"Singapore",				"EB", "Tingxuan",			"EBA",					"","Please <A style=\"color: yellow;\" HREF='mailto:tingxuan@singnet.com.sg?SUBJECT=Saw%20you%20on%20The%20Stone%20Rain%20Project'>Contact Xiao</A> if you need any cards!  <A style=\"color: yellow;\" HREF='http://cgi2.ebay.com/aw-cgi/eBayISAPI.dll?ViewFeedback&userid=tingxuan' TARGET=_blank>eBay Feedback</A>.");
	addDonor("VI",		"n", "Vinicius H. Maia",			"Brazil",		"Natal, Rio Grande do Norte",		"MT", "Vinicius",			"MTREF",				"","");
	addDonor("WX",		"n", "Sander den Biggelaar",			"Netherlands",		"Boxtel, Noord-Brabant",		"MT", "Wax0r",				"MTREF",				"","");
	addDonor("WZ",		"y", "Wang ZheFeng",				"China",		"Beijing",				"EB", "FeedBackBigKing",		"EBA",					"","");
	addDonor("XCA",		"n", "Xavier Clua Al&ograve;s",			"Spain",		"Lleida",				"",   "",				"",					"","");
	addDonor("HDRAG",	"n", "Hidden Dragon Chinese MTG",		"Hong Kong",		"Wanchai District",			"EB", "mtg-hiddendragon",		"eBay store",				"http://stores.ebay.com/Hidden-Dragon-MTG","");
	addDonor("RLESS",	"n", "&quot;pickle.69&quot;",			"Germany",		"Stutensee",				"OT", "",				"Magic Library",			"http://www.magiclibrary.net/phpBB2/viewtopic.php?t=1493","Richard collects Shivan Dragons and is working on a global set of his own.  Click <a style=\"color: yellow;\" href=\"http://www.magiclibrary.net/phpBB2/viewtopic.php?t=1493\" target=_blank>here</a> to see what he needs.");
	addDonor("PSUR",	"n", "Paulo Sureck",				"Brazil",		"Florianopolis",			"EB", "cdcsteel",			"EBA",					"","");
	addDonor("VALRY",	"n", "Valery Balabanov",			"Russia",		"Ekaterinburg",				"MT", "MagicVirus",			"MTREF",				"","");
	addDonor("SERGE",	"n", "Sergio Oliveira",				"Portugal",		"Porto",				"OT", "",				"Magic Library",			"http://www.magiclibrary.net/phpBB2/profile.php?mode=viewprofile&u=663","Sergio is working on a global set of Cities of Brass.  Can you help?");
	addDonor("FEI88",	"y", "FEI_888",					"China",		"Beijing",				"EB", "fei_888",			"EBA",					"","");
	addDonor("ALEXS",	"n", "&quot;dragsamou&quot;",			"France",		"Paris",				"MT", "dragsamou",			"",					"","");
	addDonor("SLSHP",	"n", "Sideline Shop",				"USA",			"Glendale, AZ",				"EB", "sidelineshop",			"eBay User Page",			"http://members.ebay.com/ws/eBayISAPI.dll?ViewUserPage&userid=sidelineshop","");
	addDonor("MCHAM",	"n", "&quot;magicalchamber&quot;",		"USA",			"Reno, NV",				"EB", "magicalchamber",			"EBF",					"","");
	addDonor("TMAN",	"y", "Tony Manion",				"USA",			"Lutz, FL",				"EB", "-badmagic-",			"EBF",					"","");
}


function stonerain(pLang, pEdition, pStatus, pDonor, pScan1, pScan2, pScan2Type, pScan3, pScan3Type, pNotes, pCode, pID)
{
	this.lang = pLang;
	this.edition = pEdition;
	this.status = pStatus;
	this.donor = pDonor;
	this.scan1 = pScan1;
	this.scan2 = pScan2;
	this.scan2type = pScan2Type;
	this.scan3 = pScan3;
	this.scan3type = pScan3Type;
	this.notes = pNotes;
	this.code = pCode;
	this.id = pID;
}

var masterList = new Array();
var specialList = new Array();

function addPrinting(pLang, pEdition, pStatus, pDonor, pScan1, pScan2, pScan2Type, pScan3, pScan3Type, pNotes)
{
	masterList[masterList.length] = new stonerain(pLang, pEdition, pStatus, pDonor, pScan1, pScan2, pScan2Type, pScan3, pScan3Type, pNotes, "", "");
}

function addSpecialPrinting(pCode, pID, pLang, pEdition, pStatus, pDonor, pScan1, pScan2, pScan2Type, pScan3, pScan3Type, pNotes)
{
	specialList[specialList.length] = new stonerain(pLang, pEdition, pStatus, pDonor, pScan1, pScan2, pScan2Type, pScan3, pScan3Type, pNotes, pCode, pID);
}

function setUpMasterList()
{
	addPrinting("SCH", "5E",	"x",	"WZ",	"y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "6E",	"x",	"WZ",	"y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "7E",	"x",	"WZ",	"y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "7EF",	"x",	"WZ",	"y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "8E",	"x",	"HA",	"y",	"",	"",	"",	"",	"Donated for free! Thanks Hawk!");
	addPrinting("SCH", "8EF",	"x",	"FEI88","y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "9E",	"x",	"HDRAG","y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "9EF",	"x",	"HDRAG","y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "CK",	"x",	"HDRAG","y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "CKF",	"x",	"FEI88","y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "PO",	"x",	"WZ",	"y",	"",	"",	"",	"",	"");
	addPrinting("SCH", "P3K",	"x",	"WZ",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "4EBB",	"x",	"T&T",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "5E",	"x",	"T&T",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "6E",	"x",	"ANHC",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "7E",	"x",	"TX",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "7EF",	"x",	"PA",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "8E",	"x",	"ND",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "8EF",	"x",	"ND",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "MM",	"x",	"SL",	"y",	"",	"",	"",	"",	"No foil MM in Traditional Chinese!");
	addPrinting("TCH", "TE",	"x",	"ANHC",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "PO",	"x",	"ANHC",	"y",	"",	"",	"",	"",	"");
	addPrinting("TCH", "P3K",	"x",	"NANDI","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "A",		"x",	"NK",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "B",		"x",	"SqE",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "UL",	"x",	"",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "RV",	"x",	"GUILD","y",	"",	"",	"",	"",	"Differs from Unlimited by paler coloration and lack of beveled borders.");
	addPrinting("ENG", "SM",	"x",	"T&T",	"y",	"",	"",	"",	"",	"Most of 'Edgar' was destroyed by WotC.  Exceptionally rare.");
	addPrinting("ENG", "A4E",	"x",	"CSI",	"y",	"y",	"under UV light",	"y",	"regular 4E in UV light for comparison",	"Has UV-resistant coating that prevents the card from fluorescing under UV light and keeps it from fading in the sun.  <A HREF='http://www.mtgnews.com/story/988/1/1/3' style=\"color: yellow;\" TARGET='_BLANK'>Details on this set</A>.");
	addPrinting("ENG", "4E",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "5E",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "6E",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "7E",	"x",	"",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "7EF",	"x",	"TGZ",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "8E",	"x",	"SCG",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "8EF",	"x",	"MMCN",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "9E",	"x",	"LANG",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "9EF",	"x",	"DJMC",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "IA",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "MI",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "TE",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "MM",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "MMF",	"x",	"BK",	"y",	"",	"",	"",	"",	"Not NM Condition, would like to replace.");
	addPrinting("ENG", "CK",	"x",	"LANG",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "CKF",	"x",	"OTEG",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "PO",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "P2",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "P3K",	"x",	"",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "ST",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "DCI",	"x",	"",	"y",	"",	"",	"",	"",	"");
	addPrinting("ENG", "CE",	"x",	"MD",	"y",	"y",	"back",	"",	"",	"Square corners");
	addPrinting("ENG", "ICE",	"x",	"JC",	"y",	"y",	"back",	"",	"",	"Square corners");
	addPrinting("ENG", "WC99ML",	"x",	"JMG",	"y",	"y",	"back",	"",	"",	"");
	addPrinting("ENG", "WC00JK",	"x",	"WX",	"y",	"y",	"back",	"",	"",	"");
	addPrinting("FRN", "RVBB",	"x",	"AD",	"y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "RVWB",	"x",	"LESAV","y",	"",	"",	"",	"",	"Differs from French 4E by &copy;1994 date.");
	addPrinting("FRN", "4E",	"x",	"HD",	"y",	"",	"",	"",	"",	"Differs from French WB RV by &copy;1995 date.");
	addPrinting("FRN", "5E",	"x",	"ED",	"y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "6E",	"x",	"CA",	"y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "7E",	"x",	"DT",	"y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "7EF",	"x",	"LESAV","y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "8E",	"x",	"LESAV","y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "8EF",	"x",	"LESAV","y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "9E",	"x",	"ALEXS","y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "9EF",	"x",	"ALEXS","y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "IA",	"x",	"SM",	"y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "MI",	"x",	"ANON",	"y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "TE",	"x",	"CHV",	"y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "MM",	"x",	"ED",	"y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "MMF",	"x",	"LESAV","y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "CK",	"x",	"LESAV","y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "CKF",	"x",	"ALEXS","y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "PO",	"x",	"ANON",	"y",	"",	"",	"",	"",	"");
	addPrinting("FRN", "P2",	"x",	"BV",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "RVBB",	"x",	"T&T",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "RVWB",	"x",	"MTG",	"y",	"",	"",	"",	"",	"Differs from German 4E by card text.");
	addPrinting("GER", "4E",	"x",	"HD",	"y",	"",	"",	"",	"",	"Differs from German WB RV by card text.");
	addPrinting("GER", "5E",	"x",	"MM",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "6E",	"x",	"MM",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "7E",	"x",	"MM",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "7EF",	"x",	"RH",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "8E",	"x",	"MIMA",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "8EF",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("GER", "9E",	"x",	"RLESS","y",	"",	"",	"",	"",	"");
	addPrinting("GER", "9EF",	"x",	"RLESS","y",	"",	"",	"",	"",	"");
	addPrinting("GER", "IA",	"x",	"MM",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "MI",	"x",	"MM",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "TE",	"x",	"MM",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "MM",	"x",	"MM",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "MMF",	"x",	"LP",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "CK",	"x",	"RLESS","y",	"",	"",	"",	"",	"");
	addPrinting("GER", "CKF",	"x",	"RLESS","y",	"",	"",	"",	"",	"");
	addPrinting("GER", "PO",	"x",	"MTG",	"y",	"",	"",	"",	"",	"");
	addPrinting("GER", "P2",	"x",	"DANNY","y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "RVBB",	"x",	"BB2K",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "RVWB",	"x",	"PM",	"y",	"",	"",	"",	"",	"Differs from Italian 4E by card text &amp; title font.");
	addPrinting("ITA", "4E",	"x",	"AD",	"y",	"",	"",	"",	"",	"Differs from Italian WB RV by card text &amp; title font.");
	addPrinting("ITA", "5E",	"x",	"T&T",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "6E",	"x",	"AMP",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "7E",	"x",	"AMP",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "7EF",	"x",	"DD",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "8E",	"x",	"MILA",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "8EF",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("ITA", "9E",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("ITA", "9EF",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("ITA", "IA",	"x",	"GL",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "MI",	"x",	"GL",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "TE",	"x",	"GL",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "MM",	"x",	"GL",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "MMF",	"x",	"GL",	"y",	"",	"",	"",	"",	"");
	addPrinting("ITA", "CK",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("ITA", "CKF",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("ITA", "P2",	"x",	"PAOLO","y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "4EBB",	"x",	"T&T",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "4EWB",	"x",	"DT",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "5E",	"x",	"MF",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "6E",	"x",	"MF",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "7E",	"x",	"T&T",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "7EF",	"x",	"T&T",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "8E",	"x",	"ALEXS","y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "8EF",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("JAP", "9E",	"x",	"ALEXS","y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "9EF",	"x",	"MCHAM","n",	"",	"",	"",	"",	"");
	addPrinting("JAP", "MI",	"x",	"ANHC",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "TE",	"x",	"DB",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "MM",	"x",	"TGZ",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "MMF",	"x",	"EH",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "CK",	"x",	"KARDK","y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "CKF",	"x",	"MCHAM","n",	"",	"",	"",	"",	"");
	addPrinting("JAP", "PO",	"x",	"T&T",	"y",	"",	"",	"",	"",	"Long sought, Troll and Toad was able to locate this extremely rare card for me.  Thanks Jim!");
	addPrinting("JAP", "P2",	"x",	"MF",	"y",	"",	"",	"",	"",	"");
	addPrinting("JAP", "P3K",	"x",	"SW",	"y",	"",	"",	"",	"",	"");
	addPrinting("KOR", "4EBB",	"x",	"T&T",	"y",	"",	"",	"",	"",	"");
	addPrinting("KOR", "5E",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("KOR", "TE",	"x",	"TGZ",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "4EBB",	"x",	"A-X",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "4EWB",	"x",	"HA",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "5E",	"x",	"A-X",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "6E",	"x",	"VI",	"y",	"",	"",	"",	"",	"Not NM Condition, would like to replace.");
	addPrinting("POR", "7E",	"x",	"VI",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "7EF",	"x",	"VI",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "8E",	"x",	"SERGE","y",	"",	"",	"",	"",	"");
	addPrinting("POR", "8EF",	"x",	"PSUR",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "9E",	"x",	"SERGE","y",	"",	"",	"",	"",	"");
	addPrinting("POR", "9EF",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("POR", "IA",	"x",	"A-X",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "MI",	"x",	"A-X",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "TE",	"x",	"A-X",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "MM",	"x",	"A-X",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "MMF",	"x",	"A-X",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "CK",	"x",	"PSUR",	"y",	"",	"",	"",	"",	"");
	addPrinting("POR", "CKF",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("RUS", "9EBB",	"x",	"DANNY","y",	"",	"",	"",	"",	"Donated for free!  You're the man, Danny!");
	addPrinting("RUS", "9EBBF",	"x",	"VALRY","y",	"",	"",	"",	"",	"Donated for free!  Thanks, Valery!");
	addPrinting("SPA", "4EBB",	"x",	"LP",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "4EWB",	"x",	"GUILD","y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "5E",	"x",	"LP",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "6E",	"x",	"DB",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "7E",	"x",	"LP",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "7EF",	"x",	"XCA",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "8E",	"x",	"GTORK","y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "8EF",	"",	"",	"n",	"",	"",	"",	"",	"");
	addPrinting("SPA", "9E",	"x",	"GTORK","y",	"",	"",	"",	"",	"Donated for free!  Thanks, Gregtork!");
	addPrinting("SPA", "9EF",	"x",	"GTORK","y",	"",	"",	"",	"",	"Donated for free!  Thanks, Gregtork!");
	addPrinting("SPA", "IA",	"x",	"JA",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "MI",	"x",	"LP",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "TE",	"x",	"JA",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "MM",	"x",	"DB",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "MMF",	"x",	"LP",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "CK",	"x",	"GTORK","y",	"",	"",	"",	"",	"Donated for free!  Thanks, Gregtork!");
	addPrinting("SPA", "CKF",	"x",	"GTORK","y",	"",	"",	"",	"",	"Donated for free!  Thanks, Gregtork!");
	addPrinting("SPA", "PO",	"x",	"LP",	"y",	"",	"",	"",	"",	"");
	addPrinting("SPA", "P2",	"x",	"LP",	"y",	"",	"",	"",	"",	"");
}

function setUpSpecialList()
{
	addSpecialPrinting("O",	"0019",	"ENG",	"PAPT",	"x",	"FJ",	"y",	"y",	"back",	"",	"",	"This playtest card was created and used during the original creation of Magic: The Gathering.<BR><A style=\"color: yellow;\" HREF='http://home.comcast.net/~plastereddragon/srp/pic/certauth.gif' TARGET='_BLANK'>Certificate of Authenticity</A>");
	addSpecialPrinting("M",	"0020",	"ENG",	"B",	"x",	"BOCK",	"y",	"",	"",	"",	"",	"Printing error... blotch in top border of the card (also tiny ring-shaped blemish next to 'Sorcery').");
	addSpecialPrinting("A",	"0031",	"ENG",	"B",	"x",	"VALRY","y",	"",	"",	"",	"",	"");
	addSpecialPrinting("A",	"0009",	"ENG",	"UL",	"x",	"JZM",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("A",	"0010",	"ENG",	"RV",	"x",	"JZM",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("C",	"0030",	"ENG",	"RV",	"x",	"KARDK","y",	"",	"",	"",	"",	"Offcenter print.");
	addSpecialPrinting("OT","0002",	"ENG",	"RV",	"x",	"DB",	"y",	"y",	"Example of Spore Cloud",	"",	"",	"Scan only.  This card is not in the collection.<BR>That thing taped into the picture (yes, that is scotch tape!) is a &quot;Spore&quot;<BR>from the Fallen Empires card &quot;Spore Cloud&quot; (version 3) with art by Amy Weber.");
	addSpecialPrinting("A",	"0011",	"ENG",	"4E",	"x",	"JZM",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("C",	"0018",	"ENG",	"4E",	"x",	"FJ",	"y",	"",	"",	"",	"",	"Alpha-cut 4E: This is one of a small number of 4E cards that were erroneously cut with Alpha-style corners.");
	addSpecialPrinting("C",	"0016",	"ENG",	"4E",	"x",	"BOCK",	"y",	"y",	"back",	"",	"",	"Cool miscut... would like to find some more severe Stone Rain miscuts.  Have any?");
	addSpecialPrinting("A",	"0003",	"ENG",	"6E",	"x",	"JLS",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("AP","0005",	"ENG",	"6E",	"x",	"BOCK",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("A",	"0000",	"ENG",	"7E",	"x",	"KF",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("AP","0033",	"ITA",	"IA",	"x",	"TMAN",	"n",	"",	"",	"",	"",	"");
	addSpecialPrinting("A",	"0012",	"ENG",	"IA",	"x",	"JZM",	"y",	"",	"",	"",	"",	"Kaja RULES!");
	addSpecialPrinting("A",	"0014",	"FRN",	"IA",	"x",	"JEB",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("A",	"0015",	"SPA",	"IA",	"x",	"JEB",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("C",	"0032",	"ENG",	"IA",	"x",	"SLSHP","y",	"y",	"adjoining card",	"",	"",	"Picked up this awesome miscut on eBay.  Both the stone rain and the adjoining card came as a set.");
	addSpecialPrinting("M",	"0008",	"ENG",	"IA",	"x",	"T&T",	"y",	"",	"",	"",	"",	"Odd printing blemish occupies left 50% of card.");
	addSpecialPrinting("AP","0021",	"ENG",	"TE",	"x",	"FJ",	"y",	"",	"",	"",	"",	"Donated by Forrest on behalf of Christopher Rush.");
	addSpecialPrinting("X",	"0017",	"SWE",	"TE",	"x",	"CDS",	"y",	"",	"",	"",	"",	"This is a hoax card I made for the fun of it.  Translation supplied by <A style=\"color: yellow;\" HREF='mailto:hawkan60@hotmail.com?SUBJECT=Saw%20you%20on%20The%20Stone%20Rain%20Project'>H&aring;kan Abrahamsson</A>.");
	addSpecialPrinting("AN","0023",	"ENG",	"MM",	"x",	"BT",	"y",	"y",	"close-up of caption",	"y",	"packaging sketch",	"Ben Thompson put a little something extra on this print for the Stone Rain Project, as you can see, and even drew a quick Stone Rain sketch on the packaging.  Thanks Ben!");
	addSpecialPrinting("M",	"0006",	"ENG",	"MM",	"x",	"BOCK",	"y",	"ENGMM.jpg",	"compare",	"",	"",	"Redder than average, plus printing blemish.  Normal English MM card shown for comparison.");
	addSpecialPrinting("APT","0022","ENG",	"MM",	"x",	"BT",	"y",	"y",	"back",	"",	"",	"");
	addSpecialPrinting("A",	"0024",	"ENG",	"MM",	"x",	"BT",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("A",	"0025",	"TCH",	"MM",	"x",	"BT",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("A",	"0029",	"ENG",	"MMF",	"x",	"LC",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("M",	"0007",	"ENG",	"MMF",	"x",	"BOCK",	"ENGMMF.jpg",	"y",	"back",	"",	"",	"Inverted card back.");
	addSpecialPrinting("M",	"0028",	"ENG",	"MMF",	"x",	"KW",	"y",	"",	"",	"",	"",	"Text is offset weirdly.");
	addSpecialPrinting("A",	"0013",	"TCH",	"PO",	"x",	"JEB",	"y",	"",	"",	"",	"",	"");
	addSpecialPrinting("APT","0004","ENG",	"PO",	"x",	"JLS",	"y",	"y",	"back",	"",	"",	"Unique drawing on back by John Matson, the artist.");
	addSpecialPrinting("A",	"0001",	"GER",	"P2",	"x",	"DANNY","y",	"",	"",	"",	"",	"");
	addSpecialPrinting("OT","0026",	"ENG",	"",	"x",	"DW",	"y",	"",	"",	"",	"",	"Apparently Dave took a foil card and erased the entire card surface then drew his own Stone Rain card on that, with buildings reminiscent of the original City of Brass.");
	addSpecialPrinting("O",	"0027",	"ENG",	"",	"x",	"DW",	"y",	"",	"",	"",	"",	"When I built the Stone Rain Project special printings page, I never expected to be putting a scan of a toploader up here.  But there you go, Dave drew this Stone Rainy art on a toploader.");
}

function featuredcard(fcLang, fcEdition, fcId, fcNotes)
{
	this.lang = fcLang;
	this.edition = fcEdition;
	this.id = fcId;
	this.notes = fcNotes;
}

var featured = "";

function setUpFeaturedCard()
{
	featured = new featuredcard("SPA", "CK", "", "Thanks Gregtork for helping me with my Spanish Stone Rains!!!");
}

setUpLanguages();
setUpEditions();
setUpDonors();
setUpMasterList();
setUpSpecialList();
setUpFeaturedCard();