// JavaScript Document

var photoSize = new Array
photoSize[0] = "4x6";
photoSize[1] = "5x7";
photoSize[2] = "8x10";
photoSize[3] = "8x12";
photoSize[4] = "11x14";
photoSize[5] = "12x18";
photoSize[6] = "16x20";
photoSize[7] = "20x30";
photoSize[8] = "30x40";

var photoPrice = new Array
photoPrice[0] = "1";
photoPrice[1] = "5";
photoPrice[2] = "15";
photoPrice[3] = "15";
photoPrice[4] = "25";
photoPrice[5] = "35";
photoPrice[6] = "50";
photoPrice[7] = "75";
photoPrice[8] = "100";


var theLocation = new Array
theLocation[0] = "";
theLocation[1] = "";
theLocation[2] = "";
theLocation[3] = "";
theLocation[4] = "";
theLocation[5] = "";
theLocation[6] = "";
theLocation[7] = "";
theLocation[8] = "";
theLocation[9] = "";
theLocation[10] = "";
theLocation[11] = "";
theLocation[12] = "";
theLocation[13] = "";
theLocation[14] = "";
theLocation[15] = "";
theLocation[16] = "";
theLocation[17] = "";
theLocation[18] = "";
theLocation[19] = "";

var photoId = new Array()
photoId[0] = "Back Hoe Sunset";
photoId[1] = "Dawn at Lani Kai";
photoId[2] = "Footprints on the North Shore";
photoId[3] = "GP1";
photoId[4] = "GP2";
photoId[5] = "Northshore Lifeguard";
photoId[6] = "Old Globe - Balboa Park";
photoId[7] = "Peek-a-boo";
photoId[8] = "San Clemente Pier";
photoId[9] = "San Clemente Sunset";

function purchaseInfo(){
	
	var theValue = document._xclick.menu1.value;
	var photoName = document.getElementById('title').innerHTML
	var theSize = photoSize[theValue];
	var thePrice = photoPrice[theValue];
	
	document._xclick.amount.value = thePrice;
	document._xclick.item_name.value = photoName + " " + photoSize[theValue];

}

function photoInfo(picId){

	var theLocation = "new11310/images/" + photoId[picId] + ".jpg";
	document.getElementById('photo').src = theLocation;
	document.getElementById('title').innerHTML = photoId[picId];
	//document.getElementById('location').innerHTML = theLocation[picId];
	
}