function openLinkWindow(URL)
  {
   linkWindow=window.open(URL,"linkInfo","width=950,height=1300,dependent=yes,resizable=no,scrollbars=yes,toolbar=no,menubar=no");
    linkWindow.focus();
   
  }


var printsarraym = new Array();
var printspricearraym = 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.                                                                   */
/*****************************************************************************/

/*****************************************************************************/
/* MODIFYING ITEMS AND PRICES                                                */
/*                                                                           */
/* 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                                    */
/* "printsarraym[10]="....."; printspricearraym[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                     */
/*                                                                           */
/*                                                                           */
/*                                                                           */
/*****************************************************************************/






/******************/
/* Main Item List */
/******************/

printsarraym[0]="Click the arrow for item list"; 	printspricearraym[0]="0.00";
printsarraym[1]="8 wallets ($15.00)";   printspricearraym[1]="15.00";
printsarraym[2]="3x4  ($ 5.00)";      	printspricearraym[2]="5.00";
printsarraym[3]="4x5  ($ 5.00)";        printspricearraym[3]="5.00";
printsarraym[4]="4x6  ($ 5.00)";        printspricearraym[4]="5.00";
printsarraym[5]="5x5  ($ 7.00)";        printspricearraym[5]="7.00";
printsarraym[6]="5x7  ($10.00)";        printspricearraym[6]="10.00";
printsarraym[7]="8x10 ($20.00)";	printspricearraym[7]="20.00";
printsarraym[8]="12x12 Collage ($65.00)";  printspricearraym[8]="65.00";
printsarraym[9]="11x14 ($35.00)";	printspricearraym[9]="35.00";





function PhotoOrderFormPopulatem()
{

   for (i=0; i<printsarraym.length; i++)
   {
        document.PhotoOrderFormm.item_name.options[i]=new Option(printsarraym[i], printsarraym[i])
       
   }

   
}


