function cb1() {
with (document.forms["ordera"]){


var amt=0,des=""

  if (document.ordera.gg.checked) {amt=amt+29.95; des=des+"GoldenGaia, Best Bot Ever! "}
  if (document.ordera.gu.checked) {amt=amt+14.95;des=des+"Gaia Unbanner! "}
  if (document.ordera.mp.checked) {amt=amt+14.95;des=des+"MarketPlace, "}
  if (document.ordera.bf.checked) {amt=amt+14.95;des=des+"BTFLP, "}



   	      document.getElementById("amount").value = Math.round(100*amt)/100;

		  document.getElementById("item_name").value = des;

	}
}