// JavaScript Document
function UpdateBasket(myimg)
{
	var desc = new Array();
	var cost = new Array();
	var pos;
	
       cost = [ 25,
                35,
                50
                
              ];

       desc = [ "5 x 7 double-matted print (ready for framing)",
                "8 x 10.5 double-matted print (ready for framing)",
                "11 x 15 double-matted print (ready for framing)"
                
              ];

	pos = myimg.size.selectedIndex;
	myimg.item_name.value = myimg.custom.value + " (" + desc[pos] + " @ $" + cost[pos] + " each)";
	myimg.amount.value = cost[pos] * 1.0;
}

