function passValue()
		{
			if(!formReset()) return false;
            var desc="";
			//read variables in the form
			var x=document.shopping_list;
			var y=document.payment;
			
  			y.book_amount.value=0;
  			y.prize_amount.value=0;  
			y.bio_amount.value=0; 
			y.platinum_amount.value=0;
										 
			//variables of the book
			var bk_price=x.book_unit.value
			var bk_quan=x.book_quantity.value
			var bk_total=x.book_amount.value
			if(bk_quan!=0)
			{
            	desc=desc+bk_quan+" x Photography Book =US$"+bk_total+"; ";
				y.book_amount.value=bk_total;
			}
			//variables of the prize
			var pz_price=x.prize_unit.value
			var pz_quan=x.prize_quantity.value
			var pz_total=x.prize_amount.value
			if(pz_quan!=0)
			{
            	desc=desc+pz_quan+" x Photography Plaque =US$"+pz_total+"; ";
				y.prize_amount.value=pz_total;
			}
			//variables of the platinum---added on 4/1/2005
			var platinum_price=x.platinum_unit.value
			var platinum_quan=x.platinum_quantity.value
			var platinum_total=x.platinum_amount.value
			if(platinum_quan!=0)
			{
            	desc=desc+platinum_quan+" x Photography Platinum (Book + Plaque + Biography) =US$"+platinum_total+"; ";
            	y.platinum_amount.value=platinum_total;
			}
			//variables of the bio
			var bio_price=x.bio_unit.value
			var bio_quan=x.bio_quantity.value
			var bio_total=x.bio_amount.value
			if(bio_quan!=0)
			{
            	desc=desc+bio_quan+" x Photography Bio =US$"+bio_total+"; ";
				y.bio_amount.value=bio_total;
			}
            var productName = new Array(4)
            productName[0] = "Photography Book"
            productName[1] = "Photography Plaque"
            productName[2] = "Photography Bio"
            productName[3] = "Photography Platinum"

			y.desc.value=y.id.value+"; Order Summary: "+desc;
			y.amount.value=x.amount.value;

			y.country.value=x.country.value;
    	    y.submit();
		}