﻿//-------------------------------------------------------------------------------------------------
// Image Information Database
//
//
// NOTE:  All information at the top of this file with // at the beginning of the line is for
// information and example purposes only.  Lines beginning with // are ignored.  The actual
// data entries can be found after this header.
//
// Contains information about each image.  The information is processed by imageViewHandler.js
// or imageOrderHandler.js.
//
// NOTE: Image can be an image for sale or a product for sale.
//
// Both scripts should be included in the HTML file just after the "body" tag in the following
// manner and order:
// 
//     	<script src="imageInfo.js" language="JavaScript"></script>
//     	<script src="imageViewHandler.js" language="JavaScript"></script>
//
// or
//
//     	<script src="imageInfo.js" language="JavaScript"></script>
//     	<script src="imageOrderHandler.js" language="JavaScript"></script>
//
// Each image on the website should have a block of information stored here.  Each image must be
// assigned a unique id number.  The ID number should start with one or two alphabetic characters
// followed by one to five numeric characters.
//
// Examples of valid id numbers:  P2, PL1, JY22, AB99999
//
// The alphabetic character prefixes can be used to assign the pictures to different galleries.
// For the "Portrait" gallery, the letter "P" might be used: P1, P2, P3...P99999
// 
// The information block for each image should look like the following, using the images assigned
// the id codes of "P2" and "P3" as an example:
//
// var captionP1="Griz";
// var thumbNailP1="Images/Portraits/Griz-200w.jpg";
// var largeSizeP1="Images/Portraits/Griz-500h.jpg";
// var largerSizeP1="Images/Portraits/Griz-1400.jpg";
// var aPrintP1="8\" x 12\"";
// var aCostP1=45.00;
// var aShippingCostP1=0;	//optional - if absent will default to aShippingCost
// var bPrintP1="10\" x 15\"";
// var bCostP1=55.00;
// var bShippingCostP1=0;	//optional - if absent will default to bShippingCost
// var cPrintP1="16\" x 24\"";
// var cCostP1=105.00;
// var cShippingCostP1=0;	//optional - if absent will default to cShippingCost
// var dPrintP1="20\" x 30\"";
// var dCostP1=150.00;
// var dShippingCostP1=0;	//optional - if absent will default to dShippingCost
// var ePrintP1="24\" x 36\"";
// var eCostP1=200.00;
// var eShippingCostP1=0;	//optional - if absent will default to eShippingCost
// var fPrintP1="30\" x 45\"";
// var fCostP1=300.00;
// var fShippingCostP1=0;	//optional - if absent will default to fShippingCost
//
// Here is an example where the shipping costs are not specified so they
// will default to aShippingCost, bShippingCost, etc...
// 
// var captionP3="Jack";
// var thumbNailP3="Images/Portraits/Jack-200w.jpg";
// var largeSizeP3="Images/Portraits/Jack-500h.jpg";
// var largerSizeP3="Images/Portraits/Jack-1000.jpg";
// var aPrintP3="7\" x 10\"";
// var aCostP3=35.00;
// var bPrintP3="9\" x 10\"";
// var bCostP3=60.00;
// var cPrintP3="15\" x 20\"";
// var cCostP3=120.00;
// var dPrintP3="19\" x 28\"";
// var dCostP3=180.00;
// var ePrintP3="20\" x 32\"";
// var eCostP3=230.00;
// var ePrintP3="28\" x 40\"";
// var eCostP3=340.00;
//
// IMPORTANT NOTES:
//
// You must not type the "// " before each line - the line will be ignored if you do.
//   (the "// " is used above so the example lines will be ignored)
// You must start each line with "var ".
// The quotation marks used to indicated inches are preceded by an \, as in \".
// Each picture can have different sizes available with different prices for each.
// The first lines showing "aShippingCost" and so on are the cost for shipping of each print size
// and apply to all the images.  The shipping cost can be set to the same amount for all sizes.
// Each image on the website must have a unique id number, such as "P2", "P3", "JY9999"
//
//
// Email address of person who will receiving and processing orders by email:
//
// var salesEmail="mike@folsomvillage.com";
//
// Information to be placed in the header of the order confirmation email sent to the customer.
// Used to send instructions, addresses, thank you, etc.
//
// var h1="     Thank you for your Order!";
// var h2=" ";
// var h3="     Please send a check or money order for the total price to:";
// var h4="     Tim Keller Photography";
// var h5="     Box 10";
// var h6="     Des Moines, NM 88418";
// var h7=" ";
// var h8="     Please allow 2 to 3 weeks for delivery as the images are printed upon order.";
// var h9=" ";
// var h10=" ";
// var h11=" ";
// var h12=" ";
// var h13=" ";
// var h14=" ";
// var h15=" ";
//
// Each variety or size of product can have its own shipping cost.  In addition, a base
// shipping cost can be specified.  The cost from each variety selected will be added to the base
// cost.
// 
// var aShippingCost=8.00;
// var bShippingCost=9.00;
// var cShippingCost=10.00;
// var dShippingCost=11.00;
// var eShippingCost=12.00;
// var fShippingCost=13.00;
// var baseShippingCost=8.00;
//
// var salesTaxRate=7.375;
//

// Email address of person who will receiving and processing orders by email:

var salesEmail="donegone@bacavalley.com";

//var salesEmail="mike@folsomvillage.com";

// header information for the top of the order confirmation email sent to the customer and
// the email address specified by salesEmail

var h1="     Thank you for your Order!";
var h2=" ";
var h3="     Please send a check or money order for the total price to:";
var h4=" ";
var h5="     Tim Keller Photography";
var h6="     Box 10";
var h7="     Des Moines, NM 88418";
var h8=" ";
var h9="     Please allow 2 to 3 weeks for delivery as the images are printed upon order.";
var h10=" ";
var h11=" ";
var h12=" ";
var h13=" ";
var h14=" ";
var h15=" ";

//flags to display/hide shipping cost column on the order form and the shopping cart

var dispShipCostColumnOnOrder="No";
var dispShipCostColumnOnCart="No";

//shipping cost info - only need one set for all images

//NOTE-> Need to change so each product has its own shipping costs instead of one global set.
//       Different products will need different shipping costs.  Need to make it so
//       if the variable is missing it will be read as zero for backward compatibility.
//       baseShippingCost should be left as a global.

// Each image/item can specify shipping costs for each size/flavor.  If the shipping cost
// is not specified, then it defaults to one of these costs as appropriate:

var aShippingCost=0.00;
var bShippingCost=0.00;
var cShippingCost=0.00;
var dShippingCost=0.00;
var eShippingCost=0.00;
var fShippingCost=0.00;
var baseShippingCost=0.00;

var salesTaxRate=7.375;


// beginning of Music

var captionCD1="Little Miracles - Music";
var thumbNailCD1="Images/CDLittleMiracles/LittleMiracles195W.png";
var largeSizeCD1="Images/CDLittleMiracles/LittleMiracles400W.png";
var largerSizeCD1="Images/CDLittleMiracles/LittleMiracles400W.png";
var aPrintCD1="CD";
var aCostCD1=15.00;
var aShippingCostCD1=0;	//optional - if absent will default to aShippingCost
var bPrintCD1="Cassette";
var bCostCD1=8.00;
var bShippingCostCD1=0;	//optional - if absent will default to bShippingCost
var cPrintCD1="";
var cCostCD1=0.00;
var cShippingCostCD1=0;	//optional - if absent will default to cShippingCost
var dPrintCD1="";
var dCostCD1=0.00;
var dShippingCostCD1=0;	//optional - if absent will default to dShippingCost
var ePrintCD1="";
var eCostCD1=0.0;
var eShippingCostCD1=0;	//optional - if absent will default to eShippingCost
var fPrintCD1="";
var fCostCD1=0.00;
var fShippingCostCD1=0;	//optional - if absent will default to fShippingCost

var captionCD2="No Stranger to Wishes - Music";
var thumbNailCD2="Images/ReviewsNoStranger/NoStrangerToWishesPortrait.gif";
var largeSizeCD2="Images/ReviewsNoStranger/NoStrangerToWishesPortrait.gif";
var largerSizeCD2="Images/ReviewsNoStranger/NoStrangerToWishesPortrait.gif";
var aPrintCD2="LP";
var aCostCD2=12.00;
var aShippingCostCD2=0;	//optional - if absent will default to aShippingCost
var bPrintCD2="Cassette";
var bCostCD2=8.00;
var bShippingCostCD2=0;	//optional - if absent will default to bShippingCost
var cPrintCD2="CD (without graphics)";
var cCostCD2=8.00;
var cShippingCostCD2=0;	//optional - if absent will default to cShippingCost
var dPrintCD2="";
var dCostCD2=0.00;
var dShippingCostCD2=0;	//optional - if absent will default to dShippingCost
var ePrintCD2="";
var eCostCD2=0.0;
var eShippingCostCD2=0;	//optional - if absent will default to eShippingCost
var fPrintCD2="";
var fCostCD2=0.00;
var fShippingCostCD2=0;	//optional - if absent will default to fShippingCost

var captionCD3="Live at Uncle Calvin's - Music";
var thumbNailCD3="Images/Pictures/TimSquatting-200w.jpg";
var largeSizeCD3="Images/Pictures/TimSquatting-200w.jpg";
var largerSizeCD3="Images/Pictures/TimSquatting-200w.jpg";
var aPrintCD3="Cassette";
var aCostCD3=18.00;
var aShippingCostCD3=0;	//optional - if absent will default to aShippingCost
var bPrintCD3="CD (without graphics)";
var bCostCD3=8.00;
var bShippingCostCD3=0;	//optional - if absent will default to bShippingCost
var cPrintCD3="";
var cCostCD3=0.00;
var cShippingCostCD3=0;	//optional - if absent will default to cShippingCost
var dPrintCD3="";
var dCostCD3=0.00;
var dShippingCostCD3=0;	//optional - if absent will default to dShippingCost
var ePrintCD3="";
var eCostCD3=0.0;
var eShippingCostCD3=0;	//optional - if absent will default to eShippingCost
var fPrintCD3="";
var fCostCD3=0.00;
var fShippingCostCD3=0;	//optional - if absent will default to fShippingCost

var captionCD4="The Darcy Songs - Music";
var thumbNailCD4="Images/Pictures/DarcySongsCover.jpg";
var largeSizeCD4="Images/Pictures/DarcySongsCover.jpg";
var largerSizeCD4="Images/Pictures/DarcySongsCover.jpg";
var aPrintCD4="Cassette";
var aCostCD4=8.00;
var aShippingCostCD4=0;	//optional - if absent will default to aShippingCost
var bPrintCD4="CD (without graphics)";
var bCostCD4=8.00;
var bShippingCostCD4=0;	//optional - if absent will default to bShippingCost
var cPrintCD4="";
var cCostCD4=0.00;
var cShippingCostCD4=0;	//optional - if absent will default to cShippingCost
var dPrintCD4="";
var dCostCD4=0.00;
var dShippingCostCD4=0;	//optional - if absent will default to dShippingCost
var ePrintCD4="";
var eCostCD4=0.0;
var eShippingCostCD4=0;	//optional - if absent will default to eShippingCost
var fPrintCD4="";
var fCostCD4=0.00;
var fShippingCostCD4=0;	//optional - if absent will default to fShippingCost

// beginning of Poetry

var captionP1="My Confession - Poetry Book";
var thumbNailP1="Images/MyConfession-200w.jpg";
var largeSizeP1="Images/MyConfession-500h.jpg";
var largerSizeP1="Images/MyConfession-500h.jpg";
var aPrintP1="Paperback";
var aCostP1=15.00;
var aShippingCostP1=0;	//optional - if absent will default to aShippingCost
var bPrintP1="";
var bCostP1=0.00;
var bShippingCostP1=0;	//optional - if absent will default to bShippingCost
var cPrintP1="";
var cCostP1=0.00;
var cShippingCostP1=0;	//optional - if absent will default to cShippingCost
var dPrintP1="";
var dCostP1=0.00;
var dShippingCostP1=0;	//optional - if absent will default to dShippingCost
var ePrintP1="";
var eCostP1=0.0;
var eShippingCostP1=0;	//optional - if absent will default to eShippingCost
var fPrintP1="";
var fCostP1=0.00;
var fShippingCostP1=0;	//optional - if absent will default to fShippingCost

