   // Check if we should clear the cart
   // (after a submit)
   CheckSubmitted();

   function AddToCart(poSize) {

	   // Get value
	   var lsSize = poSize.options[poSize.selectedIndex].value;

	   // Check if nothing selected
	   if (lsSize == "none") {
	      alert("You did not select a size.");
	   }

      else {

         AddItem(GetNettiOnelegStockingCode(lsSize), "Netti One Leg Stocking (" + lsSize + ")", GetNettiOnelegStockingPrice());
         window.location.href = "/cart/";

      }

   }
