var printsarray = new Array();
var printspricearray = new Array();

var typearray = new Array();
var typepricearray = new Array();
var typematharray = 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                        */
/*                                                                           */
/*                                                                           */
/* The Type array works the same way.  The type array is used to store the   */
/* the type of picture, such as Color, Black and White, Matte, Glossy, etc.  */
/* The tprice stores the cost of the of the type, if applicable.  If there   */
/* is no cost associated to the price, simply enter a "0.00" in the value.   */
/*                                                                           */
/* The tmatharray is related to the Type array in that it will either add or */
/* multiple the value stored in the tpricearray to the value stored in the   */
/* printspricearray.                                                         */
/* Examples:                                                                 */
/* typearray[1]="Lustre ( add $.25)";                                        */
/* tpricearray[1]="0.25";                                                    */
/* tmatharray[1]="a";                                                        */
/* This means that if a customer selects a Lustre type, price will be        */
/* recalculated and $ .25 will be ADDED to the cost - no matter what item    */
/* is selected.                                                              */
/* Therefore, if your customer selects an 8x10 ($10.00) picture Lustre,      */
/* the cost would be $10.25.                                                 */
/*                                                                           */
/* typearray[2]="B&W Print ( add 15%)";                                      */
/* tpricearray[2]="1.15";                                                    */
/* tmatharray[2]="m";                                                        */
/* This means that if a customer selects a B&W type, price will be           */
/* recalculated and 1.15 will be MULTIPLED to the cost - no matter what item */
/* is selected.                                                              */
/* Therefore, if your customer selects an 8x10 ($10.00) picture B&W,         */
/* the cost would be $11.50.                                                 */
/*                                                                           */
/* The paypaldarray stores the amounts for Deposits and Pay in Full.         */
/* The paypald (Deposit array) can be edited the same way.  You simply add,  */
/* change, delete rows within the array. The item price is multipled by the  */
/* value in the paypaydaarray depending on what the customer selects.        */
/*                                                                           */
/*                                                                           */
/*                                                                           */
/*****************************************************************************/








printsarray[0]="Click the arrow for item list"; 	
printspricearray[0]="0.00";
printsarray[1]="8 Wallets ($16.00)";      	  	
printspricearray[1]="16.00";
printsarray[2]="4x5 Print ($ 8.00)";		  	   
 printspricearray[2]="8.00";
printsarray[3]="5x7 Print ($ 15.00)";     			
printspricearray[3]="15.00";
printsarray[4]="8x10 Print ($ 25.00)";
     printspricearray[4]="25.00";
printsarray[5]="Wall Art 11x14  ($ 60.00)";
     printspricearray[5]="60.00";
printsarray[6]="Wall Art 16x20 ($ 100.00)";
     printspricearray[6]="100.00";
printsarray[7]="Wall Art 20x24 ($ 175.00)";
     printspricearray[7]="175.00";
printsarray[8]="Canvas Portrait 11x14 ($ 275.00)";
     printspricearray[8]="275.00";
printsarray[9]="Canvas Portrait 16x20 ($ 400.00)";
     printspricearray[9]="400.00";
printsarray[10]="Canvas Portrait 20x24 ($ 525.00)";
    printspricearray[10]="525.00";
printsarray[11]="Canvas Portrait 24x36 ($ 625.00)";
    printspricearray[11]="625.00";
printsarray[12]="Canvas Portrait 30x40 ($ 825.00)";
    printspricearray[12]="825.00";
printsarray[13]="Canvas Portrait 36x48 ($ 1000.00)";
    printspricearray[13]="1000.00";
printsarray[14]="Graduate Package One ($ 105.00)";
    printspricearray[14]="105.00";
printsarray[15]="Graduate Package Two ($ 230.00)";
    printspricearray[15]="230.00";
printsarray[16]="Graduate Package Three ($ 500.00)";
    printspricearray[16]="500.00";
printsarray[17]="5x5 Proof Album Small - Up to 30 Images ($ 150.00)";
    printspricearray[17]="150.00";
printsarray[18]="5x5 Proof Album Medium - Up to 60 Images ($ 200.00)";
    printspricearray[18]="200.00";
printsarray[19]="5x5 Proof Album Large - Up to 80 Images ($ 250.00)";
    printspricearray[19]="250.00";




typearray[0]="Click the arrow for a list of picture types"; 
typepricearray[0]="0.00";
typearray[1]="Color Glossy";
typepricearray[1]="1.00";
typearray[2]="Color Matte";
typepricearray[2]="1.00";
typearray[3]="Black and White Glossy";
typepricearray[3]="1.00";
typearray[4]="Black and White Matte";
typepricearray[4]="1.00";

typematharray[1]="a";
typematharray[2]="m";
typematharray[3]="m";
typematharray[4]="m";







function PhotoOrderFormPopulate()
{

   for (i=0; i<printsarray.length; i++)
 {   
document.PhotoOrderForm.item_name.options[i]=new Option(printsarray[i], printsarray[i])
       
   }

   for (j=0; j<typearray.length; j++)
   {
        document.PhotoOrderForm.os1.options[j]=new Option(typearray[j], typearray[j])
       
   }
   
   

}

function openLinkWindow(URL)
  {
   linkWindow=window.open(URL,"linkInfo","width=850,height=1100,dependent=yes,resizable=no,scrollbars=yes,toolbar=no,menubar=no");
    linkWindow.focus();
   
  }

