var printsarraym = new Array();
var printspricearraym = new Array();
var printsarraymt = new Array();
var mtypepricearray = new Array();
var mtypematharray = 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]="Regular Print: 4X6 ($3.00)";      	printspricearraym[1]="3.00";
printsarraym[2]="Regular Print: 5X7 ($7.00)";      	printspricearraym[2]="7.00";
printsarraym[3]="Regular Print: 8X10 ($18.00)";      	printspricearraym[3]="18.00";
printsarraym[4]="Regular Print: 11X14 ($35.00)";      	printspricearraym[4]="35.00";
printsarraym[5]="Regular Print: 12x18 ($50.00)";      	printspricearraym[5]="50.00";
printsarraym[6]="Regular Print: 16x20 ($75.00)";      	printspricearraym[6]="75.00";
printsarraym[7]="Regular Print: 16x24 ($80.00)";      	printspricearraym[7]="80.00";
printsarraym[8]="Regular Print: 20x30 ($135.00)";      	printspricearraym[8]="135.00";
printsarraym[9]="Regular Print: 24x36 ($150.00)";      	printspricearraym[9]="150.00";
printsarraym[10]="Regular Print: 4 Wallets ($5.00)";     printspricearraym[10]="5.00";
printsarraym[11]="Photo Gift: 4x5.5 Post Cards - Set of 24 ($25.00)";     printspricearraym[11]="25.00";
printsarraym[12]="Photo Gift: 5x7 Post Cards - Set of 24 ($32.00)";     printspricearraym[12]="32.00";
printsarraym[13]="Photo Gift: Mouse Pad ($12.00)";     printspricearraym[13]="12.00";
printsarraym[14]="Photo Gift: 3 Inch Button ($6.00)";     printspricearraym[14]="6.00";
printsarraym[15]="Photo Gift: 4 Inch Button ($7.00)";     printspricearraym[15]="7.00";
printsarraym[16]="Photo Gift: Photo Playing Cards ($30.00)";     printspricearraym[16]="30.00";




printsarraymt[0]="Click the arrow for print type"; 	
printsarraymt[1]="Gloss";        
printsarraymt[2]="Matte";
printsarraymt[3]="Lustre"; 
printsarraymt[4]="Metallic";         


mtypepricearray[0]="1.00";
mtypepricearray[1]="1.00";
mtypepricearray[2]="1.00";
mtypepricearray[3]="1.00";
mtypepricearray[4]="1.20";


mtypematharray[0]="m";
mtypematharray[1]="m";
mtypematharray[2]="m";
mtypematharray[3]="m";
mtypematharray[4]="m";




function PhotoOrderFormPopulatem()
{

   for (i=0; i<printsarraym.length; i++)
   {
        document.PhotoOrderFormm.item_name.options[i]=new Option(printsarraym[i], printsarraym[i])
       
   }

   
}


function PhotoOrderFormPopulatemt()
{

   for (j=0; j<printsarraymt.length; j++)
   {
        document.PhotoOrderFormm.os0.options[j]=new Option(printsarraymt[j], printsarraymt[j])
       
   }

   
}



function openLinkWindow(URL)
  {
   linkWindow=window.open(URL,"linkInfo","width=950,height=1300,dependent=yes,resizable=no,scrollbars=yes,toolbar=no,menubar=no");
    linkWindow.focus();
   
  }



function ContactFormValidate()
{
	if (document.ContactForm.customername.value == "")
	{
		alert("Your Name is required");
		document.ContactForm.customername.focus();
		return false;

	}
      if (document.ContactForm.customeremail.value == "")
	{
		alert("Your E-Mail Address is required");
		document.ContactForm.customeremail.focus();
		return false;
	}
	

}

