function swapOptions()
	{
		var the_box = window.document.paypal_form.radiobut;
		var i;
		for (i=0; i<the_box.length; i++)
			{
			if (the_box[i].checked)
				{
				var num = the_box[i].value;
				window.document.paypal_form.item_number.value = num;
				var the_amount = num + ".00";
				window.document.paypal_form.amount.value = the_amount;
				}
			}
	}
	
function swapOptions2()
	{
		var the_box = window.document.paypal_form2.radiobut;
		var i;
		for (i=0; i<the_box.length; i++)
			{
			if (the_box[i].checked)
				{
				var num = the_box[i].value;
				window.document.paypal_form2.item_number.value = num;
				var the_amount = num + ".00";
				window.document.paypal_form2.amount.value = the_amount;
				}
			}
	}


//-->

