function submithidden (formref, command, itemname, dollaramount, handlingamount, shippingamount, noshippingamount) {
	formref.action = 'https:\/\/www.paypal.com\/cgi-bin\/webscr';
	formref.cmd.value = command;
	formref.business.value = 'walkermanzke@gmail.com';
	formref.item_name.value = itemname;
	formref.amount.value = dollaramount;
	formref.handling_cart.value = handlingamount;
	formref.shipping.value = shippingamount;
	formref.no_shipping.value = '2';
	formref.add.value = '1';
}
