  /////////////////////////////////////////////////////////////////////////////////////////////////////
  // submit_product_choice.js

  function submitForm(id){
	var price = getSpanID(id);
	var product      = product_lookup[id]; 
	setEl('product',   product.name); // DBUG('product = '+product.name);
	setEl('plan',      product.plan);
	setEl('type',      product.type);
	setEl('price',     product.price); // should really be from server OK for testing
	setEl('total',	   price);
	
	getID('form').submit();
	// prevent two submissions from the same form
	submitForm = block_furtherSubmissions;
	return false;

  }

  function block_furtherSubmissions(id){ alert("inactive"); return false ; }	  

  // EOF: submit_product_choice.js
  /////////////////////////////////////////////////////////////////////////////////////////////////////


