/******************/
/*  Paypal Values */
/******************/

var printsarraylii = new Array();
var ppricearraylii = new Array();
var typearraylii = new Array();
var tpricearraylii = new Array();
var tmatharraylii = new Array();


/*****************************************************************************/
/* NOTE: ANY CHANGES TO THE VALUES BELOW, YOU MUST SAVE THEN CLOSE YOUR      */
/* BROWSER. RE-OPEN YOUR BROWSER AND ACCESS YOUR SITE - THE NEW VALUES WILL  */
/* APPEAR.                                                                   */
/*****************************************************************************/

/*****************************************************************************/
/* STEP: PACKAGE ITEM AND PRINT ITEM MODIFICATIONS                           */
/*                                                                           */
/* The items for prints as well as packages are stored in the arrays below   */
/* Each item has a description (first column) and a price (second column)    */
/* To add more items: 			                                     */
/* -Copy the last row witin the array                                        */
/* -Paste the row at the end of the array                                    */
/* "printsarray[10]="....."; ppricearray[10]=".....";"                       */
/* -Change the number to the next sequential number                          */
/* -Change the value within the ""                                           */
/*                                                                           */
/* To change an item name or price:                                          */
/* -Change the value within the ""                                           */
/*                                                                           */
/* To delete an item:                                         		     */
/* -Highlight the row you wish to delete                                    */
/* -Press the delete or backspace key                                        */
/* -Remove the empty row by pressing the delete or backspace key             */
/* -Important - renumber the array    in numerical order                     */
/*****************************************************************************/

printsarraylii[0]="Click the arrow for item list"; 		ppricearraylii[0]="0.00";
printsarraylii[1]="4x6 ($9.00)";      	  			ppricearraylii[1]="9.00";
printsarraylii[2]="8x10 ($25.00)";				ppricearraylii[2]="25.00";
printsarraylii[3]="11x14 ($40.00)";				ppricearraylii[3]="40.00";
printsarraylii[4]="12x18 ($55.00)";				ppricearraylii[4]="55.00";
printsarraylii[5]="16x20 ($65.00)";				ppricearraylii[5]="65.00";
printsarraylii[6]="Individual Note Card ($3.95)";		ppricearraylii[6]="3.95";
printsarraylii[7]="Box Set Note Cards (5) ($18.00)";		ppricearraylii[7]="18.00";



typearraylii[0]="Click the arrow for a list of picture types"; tpricearraylii[0]="0.00";
typearraylii[1]="Color";		tpricearraylii[1]="0.00";
typearraylii[2]="Black and White";   	tpricearraylii[2]="0.00";


tmatharraylii[1]="a";
tmatharraylii[2]="a";



function LoadPhotoOrderFormlii()
{

   for (i=0; i<printsarraylii.length; i++)
   {
        document.PhotoOrderFormlii.item_name.options[i]=new Option(printsarraylii[i], printsarraylii[i])
       
   }

   for (j=0; j<typearraylii.length; j++)
   {
        document.PhotoOrderFormlii.os1.options[j]=new Option(typearraylii[j], typearraylii[j])
       
   }
}
