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

   function OpenSwatches() {
      window.open("/common/html/g-swatches.html", "swatches", "width=595,height=550,location=no,resizable=no,menubar=no,scrollbars=yes,titlebar=yes,status=no,toolbar=no");
   }

   function OpenCareInstructions() {
      window.open("/common/html/g-careinstructions.html#diapers", "careinstructions", "width=595,height=550,location=no,resizable=no,menubar=no,scrollbars=yes,titlebar=yes,status=no,toolbar=no");
   }

   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(GetGaryFlannelInsertPadsCode(lsSize), "Flannel Insert Pad (" + lsSize + ")", GetGaryFlannelInsertPadsPrice(lsSize));
         window.location.href = "/cart/";

      }

   }

