<!--

  function submit_basket()
  {
  	document.SubmitBasket.submit();
  }
	
	var oWinCart = window.top.main;
		
	// Create the Category Object
	
	var oCategory = new Category('Blocking Fabric');
	var oProduct;
	var oSize;
	var oDescription;
	
	// Create a Product object for each Product and add to the Category's Products Collection
	
	oProduct = new Product(GetNextProductId(), 'Buckram', 'Quantity in metres', ' m.', 23.65);
	oSize = new Size('70 cm');
	oProduct.AddSize(oSize);
	oDescription = new Description('White');
	oProduct.AddDescription(oDescription);
	oCategory.AddProduct(oProduct);
	
	oProduct = new Product(GetNextProductId(), 'Leno 20/20', 'Quantity in metres', ' m.', 22.00);
	oSize = new Size('110 cm');
	oProduct.AddSize(oSize);
	oDescription = new Description('White');
	oProduct.AddDescription(oDescription);
	oDescription = new Description('Black');
	oProduct.AddDescription(oDescription);
	oCategory.AddProduct(oProduct);
	
	oProduct = new Product(GetNextProductId(), 'Scotch Canvas', 'Quantity in metres', ' m.', 16.50);
	oSize = new Size('107 cm');
	oProduct.AddSize(oSize);
	oDescription = new Description('Natural');
	oProduct.AddDescription(oDescription);
	oCategory.AddProduct(oProduct);
-->
