var printsarray = new Array();
var printspricearray = 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]="....."; printspricearr[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                        */
/*****************************************************************************/

printsarray[0]="";      	  	printspricearray[0]="";
printsarray[1]="16 Wallets ($6.00)";		printspricearray[1]="6.00";
printsarray[2]="3.5 x 5 ($ .60)";     		printspricearray[2]="0.60";
printsarray[3]="4x5 ($ .65)";     		printspricearray[3]="0.65";
printsarray[4]="4x6 ($ .75)";     		printspricearray[4]="0.75";
printsarray[5]="4x8 ($ 1.00)";     		printspricearray[5]="1.00";
printsarray[6]="5x5 ($ 2.00)";     		printspricearray[6]="2.00";
printsarray[7]="5x7 ($ 3.00)";     		printspricearray[7]="3.00";
printsarray[8]="8x8 ($ 4.50)";     		printspricearray[8]="4.50";
printsarray[9]="8x10 ($ 6.00)";     		printspricearray[9]="6.00";
printsarray[10]="8.5x11 ($ 7.00)";     		printspricearray[10]="7.00";
printsarray[11]="8x12 ($ 7.00)";     		printspricearray[11]="7.00";
printsarray[12]="10x10 ($ 9.00)";     		printspricearray[12]="8.00";
printsarray[13]="11x14 ($ 10.00)";     		printspricearray[13]="10.00";
printsarray[14]="12x18 ($ 18.00)";     		printspricearray[14]="18.00";
printsarray[15]="16x20 ($ 23.00)";     		printspricearray[15]="23.00";
printsarray[16]="16x24 ($ 25.00)";     		printspricearray[16]="25.00";
printsarray[17]="Streched Canvas - 8x10 ($ 35.00)";     		printspricearray[17]="35.00";
printsarray[18]="Streched Canvas - 12x12 ($ 40.00)";     		printspricearray[18]="40.00";
printsarray[19]="Streched Canvas - 16x16 ($ 45.00)";     		printspricearray[19]="45.00";
printsarray[20]="Streched Canvas - 12x18 ($ 50.00)";     		printspricearray[20]="50.00";
printsarray[21]="Streched Canvas - 16x20 ($ 55.00)";     		printspricearray[21]="55.00";
printsarray[22]="Streched Canvas - 18x24 ($ 70.00)";     		printspricearray[22]="70.00";
printsarray[23]="Streched Canvas - 24x36 ($ 85.00)";     		printspricearray[23]="85.00";
printsarray[24]="4.25 x 6 Postcard ($ 0.75)";     		printspricearray[24]="0.75";
printsarray[25]="Mouse Pad ($ 10.00)";     			printspricearray[25]="10.00";
printsarray[26]="11 Ounce White Mug ($ 15.00)";     		printspricearray[26]="15.00";
printsarray[27]="15 Ounce White Mug ($ 20.00)";     		printspricearray[27]="20.00";
printsarray[28]="Photo Keychain - Heart ($ 10.00)";     		printspricearray[28]="10.00";
printsarray[29]="Photo Keychain - Square ($ 10.00)";     		printspricearray[29]="10.00";
printsarray[30]="Photo Keychain - Circle ($ 10.00)";     		printspricearray[30]="10.00";
printsarray[31]="Photo Paperweight ($ 15.00)";     		printspricearray[31]="15.00";
printsarray[32]="CD of all High-Resolution images ($ 75.00)";     		printspricearray[32]="75.00";

   

function PhotoOrderFormPopulate()
{

   for (i=0; i<printsarray.length; i++)
   {
        document.PhotoOrderForm.item_number.options[i]=new Option(printsarray[i], printsarray[i])
       
   }
}