// Ron - The structure of this file is as follows:
// Each product has 8 variables associated with it. The first 4 are for regular non-quantity orders, The next 4 (with "q" at the end of the variable name) are for large "quantity" orders.
// Each product below begins with a comment line containing the verbal description of the product, followed by the 8 variables above.
// DON'T enter a dollar sign in front of this value - this will invalidate the number in later operations.
// Be sure to leave the semicolon after the value (or in some cases after the variable name) in place.
// If a product is sold out, omit everything between the variable name and the semicolon (e.g. "var pricemodprod1;") Again, don't omit the semicolon.
// The site code will insert "SOLD OUT" automatically when it sees a nonpriced variable on this page. DON'T enter "SOLD OUT" (or it will fail), just do the above and it will work.

// In the variable names below "x" represents the product number.
// priceprodx is the displayed price (this variable is not used on this page - it is usd on the product pages, so there is no need to be concerned with it.
// multiplier1prodx is special, and varies in its meaning as follows:
// FOR COINS, this is always equal to "1";
// FOR COIN BAGS, the amount of precious metal in a bag;
// FOR BULLION BARS, the amount of precious metal in one bar.
// pricepercentmodprodx is the percent increase your supplier charges, if applicable. NOTE: e.g., if supplier charges a 4.1% premium, this would be ".041" (without the quotes)
// multiplier2prodx is special, and varies in its meaning as follows:
// FOR COINS, the weight of precious metal in a single coin;
// FOR COIN BAGS AND ALSO FOR BULLION, this is always equal to "1" (the amount of precious metal in one ounce of precious metal, which seems silly but is necessary)
// pricemodprodX is the amount added to the price (in addition to any percentages added above) DON'T enter a dollar sign in front of this value!

// 2009 Platinum Canadian 1 OZ .9995 PURE Maple Leaf Minimum Order is 10 ozs.
var multiplier1prod1 = 1;
var pricepercentmodprod1 = 0;
var multiplier2prod1 = 1;
var pricemodprod1 = 85.00;
var multiplier1prod1q = 1;
var pricepercentmodprod1q = 0;
var multiplier2prod1q = 1;
var pricemodprod1q = 80.00;

// Varied Dates American Platinum Eagle Coin Platinum 1 OZ .9995 Brilliant Uncirculated
var multiplier1prod2 = 1;
var pricepercentmodprod2 = 0;
var multiplier2prod2 = 1;
var pricemodprod2;
var multiplier1prod2q = 1;
var pricepercentmodprod2q = 0;
var multiplier2prod2q = 1;
var pricemodprod2q;

// Varied Dates American Platinum Eagle Coin Platinum 1/2 OZ .9995 Brilliant Uncirculated
var multiplier1prod3 = 1;
var pricepercentmodprod3 = 0;
var multiplier2prod3 = .5;
var pricemodprod3 = 35.00;
var multiplier1prod3q = 1;
var pricepercentmodprod3q = 0;
var multiplier2prod3q = .5;
var pricemodprod3q = 30.00;

// Varied Dates American Platinum Eagle Coin Platinum 1/4 OZ .9995 Brilliant Uncirculated
var multiplier1prod4 = 1;
var pricepercentmodprod4 = 0;
var multiplier2prod4 = .25;
var pricemodprod4 = 30.00;
var multiplier1prod4q = 1;
var pricepercentmodprod4q = 0;
var multiplier2prod4q = .25;
var pricemodprod4q = 25.00;

// Credit Suisse Platinum 1 ounce Bars .9995 Minimum Order is 10 ozs.
var multiplier1prod5 = 1;
var pricepercentmodprod5 = 0;
var multiplier2prod5 = 1;
var pricemodprod5 = 56.00;
var multiplier1prod5q = 1;
var pricepercentmodprod5q = 0;
var multiplier2prod5q = 1;
var pricemodprod5q = 53.00;

// Credit Suisse Palladium 10 ounce Bars .9995 Minimum Order is 20 ozs.
var multiplier1prod6 = 10;
var pricepercentmodprod6 = 0;
var multiplier2prod6 = 1;
var pricemodprod6;
var multiplier1prod6q = 10;
var pricepercentmodprod6q = 0;
var multiplier2prod6q = 1;
var pricemodprod6q;

// Credit Suisse Palladium 1 ounce Bars .9995 Orig. Mint Packaging. Minimum Order is 20 ozs.
var multiplier1prod7 = 1;
var pricepercentmodprod7 = 0;
var multiplier2prod7 = 1;
var pricemodprod7 = 25.00;
var multiplier1prod7q = 1;
var pricepercentmodprod7q = 0;
var multiplier2prod7q = 1;
var pricemodprod7q = 20.00;

// Varied Dates Canadian Palladium Maple Leaf Coin Palladium 1 OZ .9995
var multiplier1prod8 = 1;
var pricepercentmodprod8 = 0;
var multiplier2prod8 = 1;
var pricemodprod8 = 35.00;
var multiplier1prod8q = 1;
var pricepercentmodprod8q = 0;
var multiplier2prod8q = 1;
var pricemodprod8q = 30.00;

// Pamp Suisse Palladium Bullion Bars Palladium 1 OZ .9995
var multiplier1prod9 = 1;
var pricepercentmodprod9 = 0;
var multiplier2prod9 = 1;
var pricemodprod9 = 25.00
var multiplier1prod9q = 1;
var pricepercentmodprod9q = 0;
var multiplier2prod9q = 1;
var pricemodprod9q = 20.00;

// Pamp Suisse Palladium Bullion Bars Palladium 10 OZ .9995
var multiplier1prod10 = 10;
var pricepercentmodprod10 = 0;
var multiplier2prod10 = 1;
var pricemodprod10 = 20.00;
var multiplier1prod10q = 10;
var pricepercentmodprod10q = 0;
var multiplier2prod10q = 1;
var pricemodprod10q = 15.00;

// Stillwater Palladium Rounds Palladium 1 OZ .9995
var multiplier1prod11 = 1;
var pricepercentmodprod11 = 0;
var multiplier2prod11 = 1;
var pricemodprod11 = 35.00;
var multiplier1prod11q = 1;
var pricepercentmodprod11q = 0;
var multiplier2prod11q = 1;
var pricemodprod11q = 32.00;
